Transparent button on slideshow Prestige theme

Hi, i’m wondering how I can make my slideshow button transparent on the Prestige theme.

This is my website URL: https://rednvbr.com/

Thank you.

1 Like

@RedNVBR

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
#section-slideshow .Button {
color: #e13e3e;

&::before {
    background-color: transparent;
}

}

For some reason, it’s still not working.

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
#section-slideshow .Button {
    color: #ffffff !important;
    border-color: #ffffff !important;
}
#section-slideshow .Button::before {
    background-color: transparent !important;
}
1 Like

Hi @KetanKumar

Does this work to make the slideshow button transparent with colored border & text? I want to do this in my home page & switch the transition off.

https://www.newdaysports.com/

CoschStudio

Thanks!