Tagged: menu
Hi Support,
How to get a topmenu item bordered?
Have set the menu item “Contact us” to Menu Style / Button style (bordered) but only get it to work in the main menu?
//Cheers!
Hi Mattias!
That option is only for the main menu. You can do some custom styling on the secondary menu though.
You can target that item with this.
#menu-item-1458, #menu-item-1458 a { }
Regards,
Elliott
Cool im still learning CSS so i can do this on my own later, can you please provide me with CSS code i want the border to be white and and font px to be 12px.
Cheers!
http://www.w3schools.com/css/css_border.asp
border-color: white;
http://www.w3schools.com/css/css_font.asp
font-size: 12px;
Hi Flikk,
Thank you added some more CSS and now it looks good!
But in responsive mode it looks crap? and how to fix the hover CSS?
#menu-item-1458, #menu-item-1458 a {
border-color: white;
font-size: 14px;
border-style: solid;
padding: 8px;
}
Hi!
Please add following code to Quick CSS as well
@media only screen and (max-width: 1200px) {
.av-main-nav > li > a { padding: 0 9px; }}
Cheers!
Yigit