I want to make product buttom only have a white board, no color inside (transparent) in main page(gallery). What should I do? Thanks
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 ,
I think you mean the button? If so, please follow the instructions below
- From your Admin page, go to Online store > Themes > click the three dots > Edit code
- Find the Asset folder, and open the styles.css file
- 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:
Hi @Kathy518 ,
Please add the code below to adjust the main banner buttons
- From your Admin page, go to Online store > Themes > click the three dots > Edit code
- Find the Asset folder, and open the styles.css file
- 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!!