Tagged: caption text
Hi
Hopefully I can explain what I need here.
On my home page I have a fullscreen slider with caption text.
Is there a way of changing the colour of the Caption text for small screens. I can see I can change the size of the font but it’s the colour that I need changing and only on this page.
Many thanks
Pete
Hey boufon,
You can wrap your text in a span with a class, something like this:
<span class="my-class">your text here</span>
Then add this to Quick CSS to apply a different colour to it on mobile devices:
@media only screen and (max-width: 767px) {
span.my-class {
color:red;
}
}
Best regards,
Rikard
Many thanks for your help Rikard