I am looking to make a button around one header link within my top navigation menu. Is this possible?
Basically I want to have a “Home”, “About” and “Get Started”. The “Get Started” link I want to have a blue circle bubble around. I know this might be some hard code editing within the header.php file but could you please help?
Hey Jonn!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
li#menu-item-3159 .avia-menu-text {
color: white!important;
background-color: blue;
padding: 5px;
border-radius: 10px;
}
Best regards,
Yigit
Thank you Yigit! It worked perfectly!
How would I add an option to change the circle color when hovering?
Thanks!
Hi!
Please add following code to Quick CSS as well
li#menu-item-3159:hover .avia-menu-text {
color: red !important;
background-color: orange;
}
Cheers!
Yigit
Thanks worked perfectly!