Forums

Issues with new Wordpress (2 posts)

  1. goodgmc
    Member
    Posted 9 months ago #

    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?

    LINK: http://www.westmiallstar.com/

  2. stvwlf
    Member
    Posted 9 months ago #

    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.

Reply

You must log in to post.

About this Topic