vote up 5 vote down star
1

I am tearing my hair out over this one. What tools do people use to debug formatting issues with css? I have some relatively simple formatting for navigation using css which looks like this:

/* sub navigation */
.sidenav {
    float: right;
    width: 218px;
}
.sidenav h1 {
    background: #BCB39F url(img/sidenavh1.gif) repeat-x;
    border-bottom: 1px solid #999;
    border-top: 1px solid #CCC;
    color: #4A4A44;
    font-size: 1.2em;
    height: 22px;
    margin: 0;
    padding-left: 12px;
}
.sidenav h1 a {
    color: #554;
    text-decoration: none;
    display: block;
}
.sidenav h1 a:hover {
    background: #D6CCB9;

    color: #654;
}

I then have this code in my page:

<div class="sidenav">
<a href="ceremony">Wedding Ceremony</a> 
<a href="reception">Wedding Reception</a> 
<div class="clearer"></div>
</div>

and it doesn't pick up the style. It was working fine, so one of my changes elsewhere must have knocked something out of place (I suspect a somewhere, but I am really struggling to find what it was. The rest of my page formats fine...)

Any suggestions?


Answer found thanks to firebug.

The formatting was not applied since the formating for links only applied to links in the <h1> element - ie the html should have been:

<div class="sidenav">
<h1><a href="ceremony">Wedding Ceremony</a></h1>
<h1><a href=reception">Wedding Reception</a></h1>
<div class="clearer"></div>
</div>
flag

50% accept rate

10 Answers

vote up 27 vote down check

firebug. There is also a pure javascript version that works in IE, called firebug lite.

It allows you to turn off or change any CSS you want on the fly.

link|flag
Thanks Mark, I knew firebug would have the answer somewhere, I hadnt realised how you could look at the different styles associated to it. – Rob Y Feb 12 at 15:27
vote up 0 vote down
link|flag
vote up 1 vote down

firebug is a lifesaver in this kind of situation!

link|flag
vote up 3 vote down

You can also use the W3C CSS validator if you don't have access to Firebug. That will generally be able to point out syntax errors.

link|flag
This validator is easily accessed through the Web Developer Toolbar: addons.mozilla.org/en-US/firefox/addon/60 – Greg Mattes Feb 12 at 16:25
vote up 2 vote down

Once you go bug you never go bag back.

link|flag
vote up 5 vote down

The Web Developer extension does some nice stuff too.

link|flag
Should have a link here: addons.mozilla.org/en-US/firefox/addon/60 – Greg Mattes Feb 12 at 16:24
vote up 2 vote down

Magilla Gorilla suspects the lack of ":

<a href=reception">Wedding Reception</a>
link|flag
Thanks - Good spot, however that was unfortunately my ctrl-V mistake in writing the question (I only posted a snippet from something much larger) – Rob Y Feb 12 at 15:34
vote up 3 vote down

Firebug really is your friend here!

Right-click part of your page, choose "Inspect element" and it'll tell you all the styles that are applied to that element. Ones that are superseded are crossed out, so you can see exactly where you've gone wrong.

link|flag
vote up 3 vote down

The Firebug plugin for Firefox has some nice CSS debugging tools.

link|flag
vote up 14 vote down

To answer the actual question title : I use FireBug!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.