How can I change the colour of the orange and green buttons ?

Discussion in 'ReThink WordPress Theme' started by selfmade, Feb 20, 2015.

  1. selfmade

    selfmade Guest

    Joined:
    Feb 4, 2015
    Messages:
    49
    Likes Received:
    0
    Hi, I would like to change the green and orange buttons to red and black. Please help. Thanks
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi selfmade!

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
     .product a.btn-2 {
    background: red !important;
    border-radius: 5px;
    }
    .product a.btn-1 {
    box-shadow: 0 3px 0 #040404;
    background: black !important;
    }
    Thanks,
    Praveen
     
  3. selfmade

    selfmade Guest

    Joined:
    Feb 4, 2015
    Messages:
    49
    Likes Received:
    0
    Thats great. Now how can i make the Read Revie button turn yellow rather than green when hovered over?
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi,

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .product a.btn-2:hover {
    background: yellow !important;
    box-shadow: 0 3px 0 rgb(222, 222, 12) !important;
    color: black !important;
    }
    Thanks,
    Praveen
     

Share This Page