Hello,
I have some CSS defined,
#section2 label{
blah blah;
}
I later within the div (#section2) I put another div and give it a class="other_mortgages".
I want to apply different CSS to the label within this div, so how do i code it?
i've done,
.other_mortgages label {
blah blah;
}
but it still applies the #section2 label {} CSS , how do I overide it without putting class="other_mortgages" to each label and then using
label.other_mortgages {
blah blah;
}
hope that makes sense.
1DMF.
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
I have some CSS defined,
#section2 label{
blah blah;
}
I later within the div (#section2) I put another div and give it a class="other_mortgages".
I want to apply different CSS to the label within this div, so how do i code it?
i've done,
.other_mortgages label {
blah blah;
}
but it still applies the #section2 label {} CSS , how do I overide it without putting class="other_mortgages" to each label and then using
label.other_mortgages {
blah blah;
}
hope that makes sense.
1DMF.
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.