AllanSmith
Member
Posted 4 months ago #
I have gotten rid of the side bars, now my main content is a bit narrow and is on the left. I would like it to be full width and no sidebars for all pages.
I have read around a few help topics, particularly this one: http://wordpress.org/support/topic/make-a-one-column-template-from-a-two-column-template. It is for a different theme, but I tried the steps anyways to no avail.
If anyone can help or knows of a link to help, it is very much appreciated!
http://www.baylandmusic.com
Change the width here:
.container_16 .grid_9 {
width: 520px;
}
960.css (line 158)
Jay Hart
Member
Posted 4 months ago #
The content block you currently have on your site has a fixed width of 520px.
Placing this code in your CSS should produce the changes you desire.
#left {
width: 100%;
}
AllanSmith
Member
Posted 4 months ago #
Amazing! You both are geniuses on different levels.
Thank you!!
If you are going to put the width in #left, then take it out of .container_16 .grid_9 or you will have conflicting CSS. Right now you don't have anything defined as #left in your CSS.