Tagged: menu styling, rounded corners
Hi,
I want to style the drop-down background with rounded corners, and have done so with the CSS below. However, This code also rounds the corners of the background hover state of the main menu links, which I don’t want. Can you suggest additional or revised CSS?
Thanks very much!
http://billrusselldesign.com/sr_volunteers/
/*rounded corners of signup dropdown*/
.header_color ul,
.header_color a,
.header_color li
{
border-radius:25px;
}
Hi Jason!
Change it to this.
/*rounded corners of signup dropdown*/
.header_color ul
{
border-radius:25px;
}
Regards,
Elliott
Hey Elliott,
That squared up the main menu link hover, but I lost the rounded corners in the drop down background. I left it place for you to see. Your thoughts?
Thanks!
Elliott, I finally figured out myself. Thank you anyway and have a great day.
-Pelyon
#top #wrap_all .av-main-nav ul > li > a,
.header_color ul {
border-radius:25px;
}
Hi!
Glad you figured it out and thanks for sharing!
Cheers!
Andy