Tagged: menu bar
Where in the Enfold Theme options would I be able to add a double line border on top and bottom of menu/navigation bar? Is that possible to do?
Hi Emma1202!
Add this to your custom CSS.
#header_main_alternate {
border-top: 1px double black !important;
border-bottom: 1px double black !important;
}
Cheers!
Elliott
Wonderful, thank you!
If that ends up not looking good, is it possible to create a gradient background for that navigation bar?
In the past I have added something like this:
background: linear-gradient(to right, #fd4f00 0%, #feba59 100%);
But with this theme, I’m not sure what I should add above to apply the gradient to the right place.
Hi!
Try this.
#header_main_alternate { background: linear-gradient(to right, #fd4f00 0%, #feba59 100%) !important; }
Best regards,
Elliott
Thank you!!!