PDA

View Full Version : Konqueror and Opera Compatibility Help




ZicklePop
May 28, 2005, 02:01 PM
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:
<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!



ZicklePop
May 28, 2005, 04:51 PM
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? :)

ZicklePop
May 28, 2005, 06:49 PM
Fixed! It was only that my libpng lib was out dated.

CaptainHaddock
May 29, 2005, 01:47 AM
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;
}