On Friday 18 April 2008 6:38 pm Brian Ogden wrote:
> /*RowStyles*/
> .RowStyle td, .AltRowStyle td, .SelectedRowStyle td, .EditRowStyle td
> /*Common Styles*/
> {
>     padding: 5px;
>     border-right: solid 1px #1d1d1d;
>     font-weight:bold;
> }
>
> .NotesColumnStyle td
> {
>     overflow: scroll;
>     width:30px;
>     height:20px;
>     background-color:Aqua;
> }


Change that to 'td.NotesColumnStyle' in the CSS.
A space is a descendant selector, i.e. it says you are looking for a td inside 
any element with the NotesColumnStyle class.

You need to put the td in front of the rule so that it has the same 
specificity as the first rule.

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

Reply via email to