I want to have one page to not have the side bar. What i am doing is putting a frame on the site and it is too wide for the site with the sidebar. I just need to get rid of the space it takes up. The page I'm working with looks like this.
I want to have one page to not have the side bar. What i am doing is putting a frame on the site and it is too wide for the site with the sidebar. I just need to get rid of the space it takes up. The page I'm working with looks like this.
Monkthemighty:
I you know how to make a custom page template, that would be one way to create a full-width page.
Otherwise, try adding the following to your CSS:
.page-id-10 article {
width: 900px;
}
page-id-10 aside {
display: none;
}
The CSS above will apply only to the Community page (ID = 10).
would I do it the same way in a template for the page?
You must log in to post.