1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Problem with sidebar on wordpress

Discussion in 'Programming' started by Peterbndrs, Aug 14, 2009.

  1. #1
    I have few wordpress blogs running successfully but suddenly from last 2 days am seeing their sidebar is disappearing from side and appearing after all the posts in down. If any programmer knows what could be the problem please reply and your help will be appreciated.
    These blogs run on auto blogging software WP Robot. One sample is http://books-to-read.us/

    thanks in advance,
     
    Peterbndrs, Aug 14, 2009 IP
  2. theblurr5495

    theblurr5495 Active Member

    Messages:
    436
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    60
    #2
    Hm, I would recommend that you email a blogger. They will probably help you. I can't really figure it out from the info given.

     
    theblurr5495, Aug 14, 2009 IP
  3. agilius

    agilius Well-Known Member

    Messages:
    1,021
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    100
    #3
    Simply replace the current sytle of the follwoing divs with with I paste in for you. I changed it on my browsers via Firebug and it works just fine, the sidebar stays where it should be:

    The content div. This one was not position right by your coder.
    
    #content {
    border-right:3px solid #D5DADD;
    float:left;
    margin:0;
    overflow:hidden;
    padding:19px 0 0;
    width:630px;
    }
    
    
    Code (markup):
    The sidebar div. This one was not position right by your coder, again.
    
    #sidebar {
    background-color:#FFFFFF;
    border-left:3px solid #D5DADD;
    float:left;
    margin-left:-3px;
    padding:185px 20px 15px 10px;
    width:310px;
    }
    
    
    Code (markup):
    The footer div. The coder forgot to reset the height of the layout.

    
    #footer {
    clear:both;
    padding:10px 28px;
    width:929px;
    }
    
    Code (markup):
    And there you go. You are fixed. :)
     
    agilius, Aug 17, 2009 IP
    Peterbndrs likes this.
  4. Peterbndrs

    Peterbndrs Active Member

    Messages:
    282
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    58
    #4
    Its great insight, thanks a lot.... I will check and set.
     
    Peterbndrs, Oct 2, 2009 IP