well my browser is FireFox and i have IE6 on my computer to look at different versions when im making my site, but now everything looks good for www.myspacedrug.com in firefox but once you look at it in IE most of the buttons are gone and the bars are missing. isn't there a quick fix code for IE? I thought i swore i saw something you just add to your code and it fixes everything. Anyone got any suggestions?
First you need to add a doc type to your page else the browser gets in to quirks mode where things are unpredictable. The second thing that might help is to add the following to the very top of your css file... * { padding: 0; margin: 0; }
looks fine to me :| PS: maybe it will help you in the future. sometimes when you're floating a div to the left, IE will incorectly double the margin-left property. Just add display:inline; and it will solve your problem.