On Feb 22, 8:52 am, Spikey <[email protected]> wrote: > hi John, the problem is I want to change the background colour but > firebug shows the colour being set by the -moz- values, if I want to > change this I think I need to find the code in my css files that is
Your css file is not what Firebug shows. It shows the result of applying your CSS file, including any additions/changes Firefox causes. > affecting the background colour but how can I find this? firebug is > only showing me the -moz- values which I cannot change The background in the example you posted was not a -moz value. jjb > > Spikey > > On Feb 22, 5:40 pm, John J Barton <[email protected]> wrote: > > > On Feb 22, 2:29 am, Spikey <[email protected]> wrote: > > > > firefox version 3.5.8, firebug version 1.5.0 > > > > I am using firebug to change the look of a website but am having > > > problems finding the right css code to change because firebug is > > > showing me -moz- elements, it says these are in the template.css file > > > but they aren't there, I now know that these are added by the Gecko > > > rendering engine, I tried turning them off by unchecking 'show user > > > agent css' in firebug but they still show, the problem is I need to > > > find the actual css to change the background colour of the main > > > content area but firebug only shows me the code below, how can I find > > > the actual css code? > > > I'm unclear on what your question is, but Firebug shows you the CSS > > styles used by Firefox to render the page you are seeing. If Firefox > > uses 'moz' values, then Firebug will show you 'moz' values. > > > > body#bd { > > > -moz-background-clip:border; > > > -moz-background-inline-policy:continuous; > > > -moz-background-origin:padding; > > > background:#8E0855 none repeat scroll 0 0; > > > ^^^^^^^^^^^^^^^ #8E0855 is the background color. > > > > color:#333333; > > > > Spikey -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/firebug?hl=en.
