how would I make the text ‘for you and your baby since 1943’ bigger on mobile so it looks less pixelated with the outline around it on mobile?
Add following CSS in .css file which will make it look like this:
@media only screen and (max-width: 600px) {
.slideshow__content {
font-size: 20px;
}
}
Hi @joshualev ,
You can try below code in theme-custom.css file:
@media (max-width: 767px) {
.slideshow__content-wrapper .slideshow__content {
font-size: 18px !important;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
@joshualev Go to assetes/theme-custom.css and put below css at bottom of file.
@media only screen and (max-width: 600px)
.slideshow__content-wrapper .slideshow__title, .slideshow__content-wrapper .slideshow__content, .promo-block__heading, .promo-block__cta
{
font-szie: 25px!important;
}

