Okay
  Public Ticket #2578555
Shop Buttons
Closed

Comments

  • justanotheragency started the conversation

    Hi there,

    I can't seem to hide these 'Add to Cart' and 'Read More' buttons. I'd prefer to have them only show on hover. Can you please advise?

    Thanks!

  •  8,849
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .woocommerce ul.products li.product .button {
        opacity: 0 !important;
    }
    .woocommerce ul.products li.minimal.product:hover .button {
        opacity: 1 !important;
    }

    Thanks


    ThemeNectar Support Team