Hello
I notice that the action button is only outlined and color is applied only when you over.
Is there any way that i can have a solid red background button with white text always? Not just on hover.
See link below to website. I am looking at the Book Now action button to always be red and have white text. Currently, it looks like it's just outlined in red.
I tried to apply the code I found online but it does nothing.
#Top_bar a.button.action_button { background: #000 !important; color: #FFF !important; }
#Top_bar a.button.action_button::after { display: none !important; }
Comments
#Top_bar .menu > li > a span:not(.description) {
You can try this css, to decarease the padding between the menu items, but I would still remove at least one menu item. Try removing "home", users know that you have to click the logo to go back.padding: 0 6px !important;
}
thanks