Color of the slider's next/prev buttons

Discussion in 'Nutrition WordPress Theme' started by mattsbigwords, May 16, 2014.

  1. mattsbigwords

    mattsbigwords New Member

    Joined:
    Dec 1, 2012
    Messages:
    1
    Likes Received:
    0
    Can I change the color of the next/prev buttons on the slider? I am talking about those four squares at the bottom right. I would like them to be more obvious.

    Slider.jpg
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

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

    Code:
    .pagination li a {
    background-image: none;
    background-color: red;
    }
    .pagination li a:hover {
    background-image: none;
    background-color: orange;
    } 
    In place of "red" and "orange" you can put your color or color code.
    This will solve your issue.
     

Share This Page