I just downloaded the new update for WordPress, and it messed up the layout of my blog. I use K2, and the blog used to be located in the middle of the page, with space on both sides. Now, it's all messed up.
How do I change it back?
I just downloaded the new update for WordPress, and it messed up the layout of my blog. I use K2, and the blog used to be located in the middle of the page, with space on both sides. Now, it's all messed up.
How do I change it back?
Hi
You are missing a width declaration in your CSS.
In style.css in your theme folder, find this on line 71:
#page {
background:white none repeat scroll 0 0;
border-color:-moz-use-text-color #DDDDDD #DDDDDD;
border-style:none solid solid;
border-width:medium 1px 1px;
clear:both;
margin:0 auto;
padding-top:20px;
position:relative;
text-align:left;
}
change the first two lines to this:
#page {
width: 700px;
background:white none repeat scroll 0 0;
Once you see the results you can play around with the 700px in case you want it a wider - 750px for example.
This topic has been closed to new replies.