Change Colors from predefined colors

Discussion in 'Blackriders WordPress Theme' started by cholcombe, Oct 29, 2013.

  1. cholcombe

    cholcombe New Member

    Joined:
    Oct 12, 2013
    Messages:
    19
    Likes Received:
    0
    Hi,
    How do I change the theme's color from one of the predefined colors (displayed as the style switcher in the demo page) to a specific color. I would like to change the contrasting color. For example, if I select the blue color, the contrasting color is orange. I would like for it to be red.
    Thank you.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  3. cholcombe

    cholcombe New Member

    Joined:
    Oct 12, 2013
    Messages:
    19
    Likes Received:
    0
    Should this work?
    .content-bar .post .read_more{
    background:red;
    }
    .content-bar .post .read_more:hover{
    background:yellow;
    }
    The colors are not changing from the default.
    Thanks.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    The code that you have posted above will not work for BlackRider theme,
    You can paste the code given below in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .post .post_content a.read-more {
    background: red;
    }
    .post .post_content a.read-more:hover {
    background: yellow;
    }
    
    This will work fine for the BlackRider theme.
     

Share This Page