look at the windows link. (the corner) the top right corner is rounded.
same goes with the first top left corner of the dropdown for each level.
I only want the top left of home and top right of contact corners to be rounded. ive tried giving them seperate selectors but again, it wasn't working?
in other words, you dont want them to be rounded in your sub navigation? I'm not sure i completely understand but if that is the case try this:
/*targets all li and a tags within the dropdown */ ul.dropdown li:first-child, ul.dropdown li a:hover{ border-radius:6px 0 0 0; } /* Doesn't work in IE */
/*targets all li and a tags within the dropdown */ ul.dropdown li:last-child, ul.dropdown li a:hover{ border-radius:0 6px 0 0; } /* Doesn't work in IE */
/*targets only 2nd level*/ ul.dropdown ul li:first-child, ul.dropdown ul li a:hover{ border-radius: none; }
/*targets only 2nd level*/ ul.dropdown ul li:last-child, ul.dropdown ul li a:hover{ border-radius: none; }
/*targets only 3rd level*/ ul.dropdown ul ul li:first-child, ul.dropdown ul ul li a:hover{ border-radius: none; }
/*targets only 3rd level*/ ul.dropdown ul ul li:last-child, ul.dropdown ul ul li a:hover{ border-radius: none; }
You can obviously shorten it by using commas since the same rules apply for both 2nd and 3rd level first and last children...but this way you see what i hope is the proper way to select each level...I can;t see the HTML structure, so i am just making an educated guess...
something like that?
But it also applies it to the first and Last of each drop down (level) list as well. trying to fix that now.
look at the windows link. (the corner) the top right corner is rounded.
same goes with the first top left corner of the dropdown for each level.
I only want the top left of home and top right of contact corners to be rounded. ive tried giving them seperate selectors but again, it wasn't working?
You can obviously shorten it by using commas since the same rules apply for both 2nd and 3rd level first and last children...but this way you see what i hope is the proper way to select each level...I can;t see the HTML structure, so i am just making an educated guess...
its no different then what I had before for some reason.