I am using the Fashe theme but the text on my header image slideshow suddenly shrunk, and I’ve looked at some of the code behind the theme but I ca’t find the property that sets the text size/font colour etc.
My site is below:
I am using the Fashe theme but the text on my header image slideshow suddenly shrunk, and I’ve looked at some of the code behind the theme but I ca’t find the property that sets the text size/font colour etc.
My site is below:
You can add this code at the end of your theme file utils.css
.slide1 .wrap-content-slide1 .m-text1 {
font-size: 40px;
}
And tune the font-size according to your preference.
You can add this code at the end of your theme file utils.css
.slide1 .m-text1 {
font-family: Montserrat-Regular !important;
font-size: 50px !important;
color: #fff !important;
}
hello @Lilasandco
You can add this code at the end of your theme file style*.css*
@media only screen and (min-width: 799px){
#shopify-section-1480267833382 .slide1 .m-text1 {
font-family: 'Montserrat-Regular' !important;
font-size: 50px !important;
color: #ec0c82 !important;
}
}