Dida Kutz wrote:

>I have a problem that seems exceedingly simple to solve, but I can't seem
to- so hoping you can help out.
>The header on my pages are defined as <h3 id="00001"> with the numbers
changing per entry. To format this header in red I'm understanding that all
I need to do is place >this in my stylehseet:
>h3[id]  {color:red;}
>However, this isn't working, and I'm stumped.


Just a simple mistake of having a missing curly brace and an extra closing
one. This is what you have:

.li {
        color: #FFFFFF;
        font-family: Verdana, Arial, sans-serif;
        font-size: 11px;
        
h3[id]  {  
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        font-weight: bold;
        margin: 0px;
        padding: 0px;
        color: #8B0000;
        }
 
       
        }


Should be the following:


.li {
        color: #FFFFFF;
        font-family: Verdana, Arial, sans-serif;
        font-size: 11px;
        }
        
h3[id]  {  
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        font-weight: bold;
        margin: 0px;
        padding: 0px;
        color: #8B0000;
        }

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to