Hello!
Here’s our site: https://www.blanktag.co/
I can’t seem to change the homepage banner text (where it says “Happiness Delivered Through Stickers”). I’d like to change that to the same size as the homepage banner text here: https://coppercowcoffee.com/ (48px on desktop, 36px on mobile). Same with the sub text as well - I’d like to change that to 22px on desktop, and 17 px on mobile. Any help would be greatly appreciated!
Thank you!
hello @blanktagco
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
.slideshow__content-wrapper .slideshow__title.heading.h1{
font-size: 48px !important;
}
.slideshow__content-wrapper p.slideshow__content{
font-size: 22px !important;
}
@media screen and (max-width: 728px){
.slideshow__content-wrapper .slideshow__title.heading.h1{
font-size: 36px !important;
}
.slideshow__content-wrapper p.slideshow__content{
font-size: 17px !important;
}
}
1 Like
Hello
1.In your Shopify Admin go to online store > themes > actions > edit code
2.Find Asset >theme.scss.css and paste this at the bottom of the file:
div#shopify-section-slideshow .slideshow__content-wrapper .slideshow__title.heading.h1{
font-size: 50px !important;
}
div#shopify-section-slideshow .slideshow__content-wrapper p.slideshow__content{
font-size: 24px !important;
}
@media screen and (max-width: 749px){
div#shopify-section-slideshow .slideshow__content-wrapper .slideshow__title.heading.h1{
font-size: 34px !important;
}
div#shopify-section-slideshow .slideshow__content-wrapper p.slideshow__content{
font-size: 16px !important;
}
}