removing sidebar from Shaan theme
-
I would like to remove the sidebar from this and center the larger, light-blue column. Would this be possible with CSS? Please advise.
The blog I need help with is: (visible only to logged in users)
-
This has several issues that come up, so if I may ask a couple questions.
Do you want to widen the content to recover the space where the sidebar was?
If not, then do you also want to center the menu and title over the content area?
-
#container {
background-image: none;
background-color: #b8cde2; /* This might be unnecessary */
}#sidebar {
display: none;
}#content.narrow {
width: 910px;
} -
That worked, thanks!
Now I need to center the header and the title. I would also like the dark blue around the title to have the same width as the content (910px).
Could you help?
-
#access ul { width: 687px; } #site-title { margin-left: 95px; } .post-title { width: 774px; }I don’t know if the post-title new value will work, if it doesn’t, add !important to the width property, like this:
width: 774px !important;
- The topic ‘removing sidebar from Shaan theme’ is closed to new replies.