I have a website i'm working on that has a class which is shared by other areas besides the one i want to apply rule to (i want to apply CSS rule to right column header only), which is at bottom header of each module .
Basically what I want to do is to know how to write the css rules so they'll only be applied to the header of this right column.
Hello !
I have a website i'm working on that has a class which is shared by other areas besides the one i want to apply rule to (i want to apply CSS rule to right column header only), which is at bottom header of each module . Basically what I want to do is to know how to write the css rules so they'll only be applied to the header of this right column.
You can check http://deckheads.pt/index.php?Itemid=293 for this
h3.headeraffects all headerThis
h3.headeris insidedivwithid=dhRightTopandclass=dhMainI tried stuff like
h3.header#dhRighttop, div.dhmain.h3.header , div#dhdhRightTop.h3.header, but nothing seems to work.Here's the div order :
div id=dhright class=dhcol > div id=dhrighttop class=dhmain > div class=box > h3 class = headerThank you
I think you want something like:
#dhrighttop h3.header