Tagged: container, full width
In theme options I have the Maximum Container Width set to 1310px.
There is one section where I want the container to be 100% percent wide instead of limited by 1310px. The section ID is #styles. I have tried a few css selectors to try to override the Max Container Width for just this section, but can’t get it to work. I tried .responsive #styles .container and set it to 100% but no luck.
Any ideas?
Hey hmsvictory!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#styles .container { max-width: 100%; padding: 0; }
this should work
Best regards,
Yigit
Thanks Yigit, I didn’t realize it was the max-width property that was limiting the width. Worked great.