The content div in the One-column, no side bar page template seems to have the width of the content div with a sidebar. Only the div in centered. This looks kinda awkward.
Isn't it supposed to be full width of the container?
The content div in the One-column, no side bar page template seems to have the width of the content div with a sidebar. Only the div in centered. This looks kinda awkward.
Isn't it supposed to be full width of the container?
If you could provide a link to the issue as well as the theme you are using etc. this may help in providing a solution.
this is intended:
see this style in style.css:
/*
LAYOUT: One column, no sidebar
DESCRIPTION: One centered column with no sidebar
*/
.one-column #content {
margin: 0 auto;
width: 640px;
}
change the width to what you want; for instance:
width: 100%;
btw:
do not edit the Twenty Ten, as this theme as the default theme of wp3 will be overwritten with the next upgrade/update of wp;
and all modifications will be lost.
consider creating a child theme: http://codex.wordpress.org/Child_Themes
This topic has been closed to new replies.