Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #937068

    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

    #937139

    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

    #937214

    Many thanks for your help Rikard

    #937479

    Hi,

    Glad we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.