Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #903680

    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.

    #903795

    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

    #903854

    Thanks. How can I add a background color to the purchase button?

    #903993

    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

    #904147

    And how do I make the font color white?

    #904700

    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

    #904709

    Not working. Font color stays the same.

    #904722

    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

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.