Hi
is it possible to specify in the Enfold Child Theme Options >> General Layout >> Dimensions a Max Container width of 1310px
and have a speficic page with a setting of 100% (so full width).
So, in effect, we are looking for two different page width templates?
Thanks
Hi JohnMYates,
Yes, that’s possible with CSS.
By default set the Max Container width.
As for full-width pages, you can use this CSS code and add it to Enfold > General Styling > Quick CSS: (11 is the page ID)
.page-id-11 #main .container {
max-width: 100%;
}
if you need multiple pages, you can do something like this:
.page-id-11 #main .container,
.page-id-12 #main .container
.page-id-13 #main .container {
max-width: 100%;
}
Hope this helps.
Best regards,
Nikko