Bruce,

> scroll down until you see the paragraph 'directions', and underneath
> that you will see 'from I-85...below that you will see really tiny
> text that says 'why am I so small?'. This is the text I am referring
> to.

.content table {
        color: #333;
        background:transparent;
        font: 70% Arial, Helvetica, sans-serif;
        padding:0;
        margin:0;
}

.content p {
       margin: 0;
        padding: 0 0 10px 2px;
        color: #333;
        font: 70%/150% Arial, Helvetica, sans-serif;
}

so it is 70% of 70%...

.content p has a specificity of 11
table td p has only a specificity of 3

try
.content table td p {
  font-size: 100%;
}

That should override the value of .content p

regards,

  Martin

 

______________________________________________________________________
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