Hello,
I’m trying to change the container size on a specific page. But my css doesn’t work.
Here’s my code:
.page-id-1906 .responsive .container {
max-width: 1400px !important;
}
Did I forgot a selector on this code or my page id is wrong?
Thank you
Regards,
Laure
Hi,
yep use this one:
.responsive .page-id-1906 .container {
max-width: 1400px !important;
}
Regards
Alex
Hi,
It’s working thank you!
Regards
Laure
Hi,
Sorry, I have an other issue.
I want to exclude the header for this code. I only want to apply that size on the content of this specific page.
What should I add on the code?
Thanks
Regards
Laure
Hi
in this one the header is excluded:
.responsive .page-id-1906 #main .container {
max-width: 1400px !important;
}
Regards
Alex