create page with no columns
-
I have a three column theme, and occasionally would like to have the ability to create a page with no columns, and just one column on the right. How could I do that in css.
The page is called TIMELINE.
https://manifest828.com/timeline/
Thanks
The blog I need help with is: (visible only to logged in users)
-
This is what I did, but it still leaves the containers (?). I want body of the page to extend from left to right margin.
.page-id-6929 .right-sidebar, .page-id-6929 .left-sidebar {
display:none;
} -
I was unable to view the page you linked to – it took me to the homepage.
Based on the code you’ve already used, try adding this to your CSS to get that page to display full screen.
.page-id-6929 .content-area { width: 100%; }I hope that helps!
-
Thanks, that seems to work.
.page-id-7114 .right-sidebar, .page-id-7114 .left-sidebar {
display:none;
}.page-id-7114 .content-area {
width: 100%;
} -
- The topic ‘create page with no columns’ is closed to new replies.