Tagged: caption text
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