I thought I has this nth-child or nth-of-type stuff down, but somehow it does not seem to work on my site. I have http://www.dateworld.co.za/ and need the 3rd tab to be a red background, but somehow this code does not seem to work...
Can anybody help me?
div#headernav ul li a {
padding: 0px 16px;
height: 30px;
display: block;
float: left;
font: bold 12px/30px arial, verdana, sans-serif;
color: #ffffff;
text-transform:uppercase;
text-decoration: none;
margin-right:6px;
background-color:#2274D9;
}
div#headernav ul li a:nth-of-type(3){
height: 30px;
display: block;
background-color:#ff0000;
}
Thanks and regards Anton