Harrington - Text colour over slides

Discussion in 'Harrington- A WordPress Business Theme.' started by Sandra, Sep 1, 2014.

Thread Status:
Not open for further replies.
  1. Sandra

    Sandra Member

    Joined:
    Dec 28, 2011
    Messages:
    31
    Likes Received:
    0
    Hello,
    Thanks you for the code to change the h1 etc.

    A side effect of that was to change the colour of the text and the "read more" over the slides on the home page from white to my new colour.

    Could you please tell me how to get this text back to white - as shown in the screenshot attached?

    Thank you,

    Sandra Screen Shot 2014-09-01 at 07.51.42.png
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .sy-caption .slider_caption h1
    {
    color:yellow;
    }
    Please set color according to your requirement.
    This will solve your issue.


    Thanks & Regards
    Pramod
     
  3. Sandra

    Sandra Member

    Joined:
    Dec 28, 2011
    Messages:
    31
    Likes Received:
    0
    Thank you Pramod,

    I figured out that I also needed to add !important as the h1 colour would overide it otherwise - so I have now

    .sy-caption .slider_caption h1
    {
    color:white !important;
    }

    Which is working fine and also the circular arrow thingy - but I would also like the linking text next to the circular arrow thingy also in white please?

    Thank you for your patience!

    Sandra
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Yes you did well, !important set its priority high.
    Please this code for keeping same color of heading & link over the previous code.
    Code:
    .sy-caption .slider_caption h1,.sy-caption .slider_caption a
    {
    color:yellow !important;
    }
    If want to change link color different to the heading then use below code and keep previous code.
    Code:
    .sy-caption .slider_caption a
    {
    color:yellow !important;
    }
    Thanks & Regards
    Pramod
     
  5. Sandra

    Sandra Member

    Joined:
    Dec 28, 2011
    Messages:
    31
    Likes Received:
    0
    Thank you - Perfect!!
     
Thread Status:
Not open for further replies.

Share This Page