Hello All,
I am trying to change the size of the heading in the LOFT theme slideshow (desktop & Mobile). i wasn’t able to find anything online. Can you suggest something.
Hello All,
I am trying to change the size of the heading in the LOFT theme slideshow (desktop & Mobile). i wasn’t able to find anything online. Can you suggest something.
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! ![]()
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Thnk you for your reply Kumar.
this is the URL:https://shop.iconbest.com/
the header is in the slideshow [ 2nd & 3rd ]
thanks for URL yes please try this code
/* Desktop */
@media screen and (min-width: 769px) {
#block--1599582345376-2 h2 {
font-size: 36px;
}
#block--1599582345376-0 h2 {
font-size: 36px;
}
}
/* Mobile */
@media screen and (max-width: 768px) {
#block--1599582345376-2 h2 {
font-size: 30px;
}
#block--1599582345376-0 h2 {
font-size: 30px;
}
}
change font size as you like…
Thank you Kumar, That works.
But in the same slideshow, under the shop now button there is 3 lines, how can i control them? i need to make them smaller & push them close to the button?
Thanks in advance.
desktop or mobile please share issue image?
i have checked bt i can’t see any issue its work
thank you Kumar, that works.
One last question, i want also to modify the size of the H3 , the line below the title : https://shop.iconbest.com/
yes please add this code
/* Desktop */
@media screen and (min-width: 769px) {
#block--1599582345376-2 p {
font-size: 16px;
}
#block--1599582345376-0 p {
font-size: 16px;
}
}
/* Mobile */
@media screen and (max-width: 768px) {
#block--1599582345376-2 p {
font-size: 14px;
}
#block--1599582345376-0 p {
font-size: 14px;
}
}