I used some CSS that I found here on a forum topic to create a boxed layout on just one page. That worked great, except that the header of the page is out of alignment.
http://donsharphomeimprovements.com/blog/
On those same topics, some CSS was mentioned that might fix this issue, but it didn’t work for me:
div#header_meta, div#header_main {
width: 70%;
margin: 0 auto;
}
What am I missing? Thanks in advance!
Hi Tracy!
Please use the below code and adjust the max-width to suit your design or change max width to 70%; You need to add the page id class before the header to target specific pages.
#header {
max-width: 1024px;
left: 50%;
transform: translateX(-50%);
}
Regards,
Vinay