How can I make a product button transparent on the main page?

I want to make product buttom only have a white board, no color inside (transparent) in main page(gallery). What should I do? Thanks

https://phantomgogo.com/

1 Like

Hi @Kathy518 ,

Thank you for providing your website. Can you explain which part of the website do you want the color to be transparent?

Hi,

I want to make the gallery bottom become transparent and get a white frame. Thanks

Hi @Kathy518

Sorry, I still don’t understand. Is the footer section is what you mean?

No, it’s only gallery part.

Hi @Kathy518 ,

I think you mean the button? If so, please follow the instructions below

  1. From your Admin page, go to Online store > Themes > click the three dots > Edit code
  2. Find the Asset folder, and open the styles.css file
  3. Add the code below at the very end of the file
span.overlay-text__button.btn.btn--primary {
    background: transparent;
    outline: 1px solid #ffff;
}

See result here:

It works! How about also in main page slideshow bottom?

1 Like

Hi @Kathy518 ,

Please add the code below to adjust the main banner buttons

  1. From your Admin page, go to Online store > Themes > click the three dots > Edit code
  2. Find the Asset folder, and open the styles.css file
  3. Add the code below at the very end of the file
.slide a.overlay-text__button.button.altcolour {
    background: transparent;
    outline: 1px solid #fff;
    color: #fff;
}

Thanks a lot!!