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,
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.
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.