Hi, when I go to the shop page on my site, the buy button and show more seems hidden as you can see in the screenshot and only once the user scrolls over it is become more visible.
How can I make more visible from the page load and not the scroll over?
Also, how can I make the buy button on the shop page with a background color?
Thanks.
Hey DROR,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
#top .avia_cart_buttons {
opacity: 1 !important;
}
Hope this helps :)
Best regards,
Nikko
Thanks. How can I add a background color to the purchase button?
Hi,
Try adding this css code in Quick CSS:
#top .avia_cart_buttons .add_to_cart_button {
background-color: blue;
}
Just adjust the colors, let us know if you need further assistance :)
Best regards,
Nikko
And how do I make the font color white?
Hi,
Just replace the code I gave with this:
#top .avia_cart_buttons .add_to_cart_button {
background-color: blue;
color: white;
}
Best regards,
Nikko
Not working. Font color stays the same.
Hi,
Try adding !important, the code should look like this:
#top .avia_cart_buttons .add_to_cart_button {
background-color: blue;
color: white !important;
}
Best regards,
Nikko