Hi Community,
I would like to change the font size of the Slideshow heading on desktop. Everything I found does not seem to work.
Mobile font size is ok but I want to increase the desktop font size of the blue marked slideshow heading text
Hi Community,
I would like to change the font size of the Slideshow heading on desktop. Everything I found does not seem to work.
Hi @SchubertNex ,
You can follow the instruction below:
@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.
can you try this code
@media screen and (min-width: 641px) {
.Slideshow__Content .SectionHeader__Heading {
font-size: 42px !important; /* change value as you like */
}
}