Hi,
I want to have 2 rows of columns and I want each column to be the same width but also centered on the page. The first row should have 4 columns and the second row should have 3 columns. How do I do this if I want all columns to be the same width but still centered?
Thanks – love your themes and support!
Gabe
Hey connect4consulting!
For what your trying to do it would be easiest to just use HTML and inline CSS.
<div style = "position: relative; width: 500px; margin: 0px auto;">
<div style = "float: left; width: 200px; margin-right: 100px;">
1st column
</div>
<div style = "float: left; width: 200px;">
2nd column
</div>
</div>
And then play around with the widths.
Or you can also try doing this, http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/, and then in the debug field drag your column shortcodes so they nest inside each other.
By the way I viewed your link but it has a PHP error with your WordPress installation.
Regards,
Elliott