even if I add a third class to that field it doesn't work..
Code:
#form_top section .fl_right {float:right; border:solid 1px red; }
UNLESS I add an id to the section and do
Code:
#form_top section#two .fl_right {float:right; border:solid 1px red; }
this also doesn't work..
Code:
#form_top section#two .field_txt_fl:nth-child(2) {float:right; border:solid 1px red; }
I DON'T GET THIS AT ALL
so I HAVE TO add an id (or class) to that 2nd<section> AND a third class to that 2nd text field?? so much for the wonders of CSS3.... ;-)
this also doesn't work
Code:
#form_top section:nth-child(2) .fl_right {float:left; width:174px; border:solid 1px green; }
(why doesn't this one work? no other element has this class... this is a THIRD class I have now added to that 2nd text field..)
thank you..
Bookmarks