This topic has 10 replies, 4 voices, and was last updated 4 years, 5 months ago ago by Rose Tyler
How do I change the text hover color for the 4 banners on my home page? There was no option on the backend. Also, how do I get the buttons to show?
Thanks.
Hello,
As I can see there is some custom code in Theme Options > Custom CSS
.banner .banner-title:hover {
color:#888 !important;
}
We don’t have a special option in the banner element settings to change the color of the text when you hover over the banner.
Regards
I, unfortunately, do not see that custom code in the editor? I would like it to be #dc2935 instead of #888. Please can you take a look? Also can you take a look as to why the button does not show? And finally the following custom code doesn’t seem to want to work either? It still comes in green.
.woocommerce-message, .woocommerce-error, .woocommerce-info, .dokan-info, .dokan-error, .dokan-alert, .dokan-alert-success, .mc4wp-alert, .woocommerce-order-overview-wrapper ~ p {
background: #dc2935;
}
Hi,
1) The mentioned code you can find in Custom CSS for page area – http://prntscr.com/sp6scz
2) Make sure that you added a Title of the button.
3) Custom CSS area should not contain any script code – http://prntscr.com/sp6u9r
Use the next code to change bg color here http://prntscr.com/sp6vtm
.sticky-message-on .content-page .woocommerce-message{
background-color: #dc2935 !important;
}
Regards
1) Thank you – that worked.
2) I am not able to see where to add the title for a button on the banner mask
3) Sounds good
4) I added this to the theme css but when you go to the shopping cart and increase the qty of a product and click update, it still shows in green.
Hi,
4. Use below code
.woocommerce-message, .woocommerce-error, .woocommerce-info, .dokan-info, .dokan-error, .dokan-alert, .dokan-alert-success, .mc4wp-alert, .woocommerce-order-overview-wrapper ~ p {
background: #dc2935;
}
Regards,
Hung PD
2. Worked thank you for showing me
4) When you are on a product page and you add to cart it is still green?
Thanks,
Matt
In this case, change the previous code to
.sticky-message-on .content-page .woocommerce-message,
.woocommerce-message, .woocommerce-error, .woocommerce-info,
.dokan-info, .dokan-error, .dokan-alert, .dokan-alert-success,
.mc4wp-alert, .woocommerce-order-overview-wrapper ~ p{
background-color: #dc2935 !important;
}
Regards
That worked. Can you look at one last thing? My search bar seems to take a while to load when you start entering text.
On first sight, it works fine – https://gyazo.com/cc7ec72db0ba17822be4af5ab93259f5
Ajax search results speed depends on server response time and optimized structure of your DB. When you type anything site generates requests to get results and if your server response is quick then you get them immediately.
Regards
You must be logged in to reply to this topic.Log in/Sign up