Tagged: column, custom, enfold, full width
I can not seem to figure out how to make a column stretch the fullwidth of a page like a layer slider does.
How do I do this? Please Help.
Hi Vicken!
Please add a Color Section element to your page and give it a unique ID – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png
Then add following code to Quick CSS in Enfold theme options under General Styling tab
#your-custom-id .container { width: 100%; }
Regards,
Yigit
I like to add that there is also a max-width on the container. So the code should be:
#your-custom-id .container {
width: 100%;
max-width: none;
}
Hi!
@wizzbit Thank you for your input! On newer version of Enfold, yes. It was not needed on older versions :)
http://kriesi.at/documentation/enfold/color-section-with-100-container/
Regards,
Yigit
Hi,
I tried both codes, as well as :
/* Full width pages */
#FullWidthSection .container {
width: 98% !important;
max-width: none !important;
}
But my page is never full width. Could you have a look?
Thanks.
Hey!
Please change the code to following one
#fullwidthsection .container {
width: 98% !important;
max-width: none !important;
}
Cheers!
Yigit
Thanks it works!