Can i change the button colors

Hi,
Is it possible to change the color of the add listing and search button colors?

Hi,

You can change colors in Appearance > Customize, all other customizations will require CSS tweaks. If you are familiar with CSS, I recommend checking out this tutorial: CSS Buttons

​I hope this is helpful to you.

Hi! Place this CSS into the admin top bar>customize>additional css field

.hp-menu__item--listing-submit {background-color:yellow; color: black;}
.hp-menu__item--listing-submit:hover {background-color:orange;}
.hp-form__button.button-primary.hp-field.hp-field--submit {background-color:yellow; color: black;}
.hp-form__button.button-primary.hp-field.hp-field--submit:hover {background-color:orange;}

Change the colors as you want. “background-color:” the button color, and the “color:” the text color. As you see, there is two version for each class. With the “:hover” class ending, you can define the button colors to different, on mouse hover.

1 Like

Thanks works well

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.