I have the following selectors on my menu to apply a border radius to the first and last child of my menu
.main-nav ul li a:first-child {border-radius: 6px 0 0 6px!important;}
.main-nav ul li a:last-child {border-radius: 0 6px 6px 0!important;}
I even tried the !important
addition to try and force this on, however it is not working and I can't see where it would be overridden, can anyone please advise how to get round this?