Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Topic started by: Anakin_holland on July 26, 2005, 05:47:44 AM

Title: interpretation-difference between FireFox and IE?
Post by: Anakin_holland on July 26, 2005, 05:47:44 AM
Hello folks,

Just ran into a situation I can't solve on my own... I adjusted some colors in the file style.css, but IE won't show one of them?

I changed this:

#bodyarea
{
       background-color: #D4D4D4;
}


Into this:

#bodyarea
{
        background-color: #FFC125;
}


But as you can see below, IE won't display the color?

FireFox:
(http://anakin.is-a-geek.org:17827/board_FF.gif)

IE:
(http://anakin.is-a-geek.org:17827/board_IE.gif)

I searched the file, but #D4D4D4 wasn't found at all anymore, and the term "gray" only appeared in the header-boxes... I also tried 4 other colors, ending up with the same result.

I have the same situation if I use transparent images. FF is good, IE displays a gray background...

I guess this has something to do with IE not following W3C to the letter?

Cheers!

Edit: added some text
Title: Re: interpretation-difference between FireFox and IE?
Post by: [Unknown] on August 03, 2005, 12:51:37 AM
I'm not sure what might cause this.  Do you have a link?

-[Unknown]
Title: Re: interpretation-difference between FireFox and IE?
Post by: tentronik on August 03, 2005, 01:05:01 AM
Could be cell spacing of the tables (should be "0") and or css padding values.
Sorry i thought u mean the border :-p

hmm try
body{
background-color: #FFC125;
}
Title: Re: interpretation-difference between FireFox and IE?
Post by: Anakin_holland on August 07, 2005, 04:40:10 AM
Thnx tentronik,

That did the job!

You wouldn't by any chance have a solution to the transparent images not showing properly?

Cheers!
Title: Re: interpretation-difference between FireFox and IE?
Post by: tentronik on August 07, 2005, 01:56:07 PM
Are the transparent images png 24?
IE cant display png 24 propably try png 8 instead.
Title: Re: interpretation-difference between FireFox and IE?
Post by: Anakin_holland on August 11, 2005, 02:44:59 PM
Quote from: tentronik on August 07, 2005, 01:56:07 PM
Are the transparent images png 24?
IE cant display png 24 propably try png 8 instead.
It is 24-bit true colour indeed. Other choices are 16 colours and 256 colours. That looks like crap...  :D

Cheers anyway!