Home Forums WoodMart support forum Button Border on Hover Reply To: Button Border on Hover

#165717

Hello,

As you want to display the black border on all the buttons on hover. You can check the available options for button styling in theme settings >> STYLES AND COLORS >> BUTTONS. As there are options to change the text color and background color on hover but there is no such option to display the border color on hover.

So you can try the below CSS code in global custom CSS area under theme settings >> custom CSS, at your own risk:

.button:hover , button:hover{
border:solid black 2px !important;
}

Best Regards.