Trying to redesign one of my sites. As usual it looks good in FF, but crappy in IE. http://www.sonicwildfire.com/test/screenshots.php If you notice the sidebar in FF looks fine, the sidebar in IE is getting pushed to the bottom of the page. I'm not too tech savvy with css and stuff, so any help is greatly appreciated! Thanks
Both your content and your sidebar are floating left. Float your sidebar to the right. #content { width: 500px; padding-right: 40px; float: left; } #sidebar { width: 230px; padding-top: 10px; /*background: #f5f5f5;*/ color: #444; font-size: 1.2em; line-height: 1.5em; float: left; } Code (markup): #content { width: 500px; padding-right: 40px; float: left; } #sidebar { width: 230px; padding-top: 10px; /*background: #f5f5f5;*/ color: #444; font-size: 1.2em; line-height: 1.5em; float: right; } Code (markup): Try that and if it still gets pushed to the bottom search google for "floatutorial"
Well it pushed the sidebar to the right, but now it won't go to the top of the page. It is still stuck under the adsense on the right side. FF still looks good. any other help before i look in a tutorial. Not sure if i can figure it out on my own.. like I said, I don't know much at all about this.