[ask]changing background ?

truf777

Newbie
Joined
Aug 8, 2009
Messages
45
Reaction score
20
how can i change shopper press background ? have change all
Background:#fff to Background:#aaa but nothing changet :(
 
how can i change shopper press background ? have change all
Background:#fff to Background:#aaa but nothing changet :(


If this is css, those hex colors usually have 6 codes

like white is

HTML:
#ffffff;

also the proper name for a background color css tag is

HTML:
background-color: #ffffff;

Additionally if you've changed everything or think you have, try looking down lower in the .css style sheet. You might have another definition for the background color that is overwriting all the other ones just because it is placed last in the style sheet.

If your still having trouble try either the "Web Developer" toolbar add on for firefox or "Firebug" add on to inspect the elements and css.
 
If your still having trouble try either the "Web Developer" toolbar add on for firefox or "Firebug" add on to inspect the elements and css.

Try "Web Developer" and then ctrl-shift-Y to get css code of the background....
 
Back
Top