Need a little help and suggestion with web designing

PixelPhoenix

Newbie
Joined
Dec 9, 2024
Messages
13
Reaction score
11
1734858615400.png


so here i have 2 different modules in divi section, i want them to have the same size, i keep tweaking the margins and paddings settings of both the modules but still theres some difference or atleast on other screen sizes, what are different ways to handle this?
 
To make the two modules the same size across different screen sizes in Divi, try using the "Equalize Column Heights" option under the section settings or apply custom CSS with height: 100% to both modules. Also, test your layout using Divi's responsive settings to adjust margins/paddings per device.
 
For equal height you can simply give display flex property for divi section.
.divi {display: flex;}

For equal width to both the modules you can add below property on any one module.
. module { flex : 1 }

For any further help you can message me
 
For equal height you can simply give display flex property for divi section.
.divi {display: flex;}

For equal width to both the modules you can add below property on any one module.
. module { flex : 1 }

For any further help you can message me
guide me a bit on this, where do i add this property? in custom css?
 
Back
Top