Hello-
I am using Spark theme (version 2.10.0).
The slideshow headings and subheadings look huge on mobile device. The size option available only alters desktop view. There is no option to resize for mobile. Thoughts?
Link:
Hello-
I am using Spark theme (version 2.10.0).
The slideshow headings and subheadings look huge on mobile device. The size option available only alters desktop view. There is no option to resize for mobile. Thoughts?
Link:
@cloverlandhome - it needs custom css, can you share password to view page?
Ha. Yes, it’s “smellycat01” ![]()
@cloverlandhome - please add this css to the very end of your theme.css file and check, adjust number as per the need
@media screen and (max-width:749px){
.slideshow__heading{font-size: 28px;}
.slideshow__subheading{font-size: 22px;}
}
Thank you!! That 100% worked! Just two follow up questions, as they are related.
@cloverlandhome - default padding is set, text has taken the entire available space as seen in screenshot
and yes color can be changed
I would like the width to not take up the whole screen so that the text goes onto two lines. How do I do that?
And thank you! How do I change the hyperlink color?
@cloverlandhome - we can try by settings max-width and check, so updated code becomes
@media screen and (max-width:749px){
.slideshow__heading{font-size: 28px; max-width: 70%; margin: 0 auto;}
.slideshow__subheading{font-size: 22px; max-width: 70%; margin: 0 auto;}
}