Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

ZicklePop

macrumors member
Original poster
Mar 28, 2005
98
0
I recently redid ZicklePop.com (ZicklePop Productions), to add cross-browser compatibility. Here are my errors:

OPERA:
Theres about a 8 pixel gap at the top and bottom of the website. To fix this in other browsers I use the code:
Code:
<style type="text/css">Body{margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;}</style>

KONQUEROR:
Some images are not being displayed by it like:
http://www.zicklepop.com/gfx/spacer.gif
http://www.zicklepop.com/gfx/bg-top.png
http://www.zicklepop.com/gfx/bg-leftside.png

To see what I mean visit www.zicklepop.com in those browsers. Please help me to fix them.

Do you see any other bugs? Please tell me, thank you!
 
Okay Opera sets the padding by default to 8px and I didnt have a padding set. Now anyone know how to help me with Konqueror? :)
 
Glad you solved your problems. :) Often, it helps to start your style sheet by getting rid of all browser-default padding and margins, like so:

* {
padding: 0;
margin: 0;
}
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.