PDA

View Full Version : actinic.css not working properly in firefox...?


jxm28788
22-Nov-2006, 04:32 PM
I have just created a new 'specials' page that uses different templates to tehrest of the site, with a few new css declarations just for this page (stripe1 and stripe2).

It looks fine in actinic preview, and in IE - but in firefox there is a problem with the table colouring in.

Example, see 'technical stuff' down the bottom of the page for a good example:

http://www.crazydaves.co.uk/Crazy_Deal_of_the_Week.html

In IE the table rows are alternating between light blue and darker blue. But in firefox I'm just getting all of the tables as white with a blue border.

Any ideas?

jont
22-Nov-2006, 04:56 PM
Take a look at this line

background-color: "e6f5fa";

quotes are not used... try

background-color: #e6f5fa;

jont
22-Nov-2006, 04:58 PM
ditto the other class

background-color: #1ec0e0;

this one looks a little dark - may be worth softening a little

jxm28788
22-Nov-2006, 05:05 PM
Yep, that fixed it! Thanks.

Not sure why it had quotes, must have cut n pasted it from somewhere else...

and I'll take a look at that colour too (tomorrow!)