Hi,
Is there a way to add new “no sidebar” post/page layout while keeping the original one?
I’d like to change the width of the text, but only in selected pages/posts.
Currently the text in a “no sidebar” page seem to have a 600px width.
Is there a way for some “no sidebar” posts to be at 700px as well, and others at 900px?
The goal is to have different widths for different needs.
Hey,
Yes, that is possible. You can adjust the width of full width post using this:
#top .fullsize .template-blog .post .entry-content {
max-width: 950px;
}
Adjust the width value. If you want to target specific post, just view the source then look for the body class.
#top.postid-1 .fullsize .template-blog .post .entry-content {
max-width: 950px !important;
}
Regards,
Ismael