How can I increase the desktop slideshow font size in Prestige 2.0 theme?

Hi Community,

I would like to change the font size of the Slideshow heading on desktop. Everything I found does not seem to work.

www.nexural.com


Mobile font size is ok but I want to increase the desktop font size of the blue marked slideshow heading text

Hi @SchubertNex ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css->paste below code at the bottom of the file:
@media screen and (min-width: 641px) {
.Slideshow__Content .SectionHeader__Heading {
    font-size: 36px !important;
}
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

@SchubertNex

can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
@media screen and (min-width: 641px) {
.Slideshow__Content .SectionHeader__Heading {
    font-size: 42px !important; /* change value as you like */
}
}