Change border color of Home Page Feature Area Images when hovering with mouse?

Discussion in 'Blackriders WordPress Theme' started by gloryous, Jan 10, 2018.

  1. gloryous

    gloryous Member

    Joined:
    May 25, 2012
    Messages:
    223
    Likes Received:
    8
    Greetings!

    Is it possible to change the border color of the Home Page Feature Area Images when hovering with mouse? When it pulses, I'd like to have a different color that's more complementary to the branding colors chosen for the client.

    Here is the area I'm interested in changing:

    upload_2018-1-10_10-2-11.png

    Thank you in advance for your advice and help!

    Glory
     
  2. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Hi,

    To make desirable changes, just paste the code given below in Custom CSS section.
    (Dashboard->Inkthemes->Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .feature_inner_box .circle:hover {
        background: #33d8b3;
    }
    Or if you want to use different colors for each feature colon then use the below-given CSS codes:
    Code:
    .first .circle:hover {
        background: #33d8b3;
    }
    .second .circle:hover {
        background: #33d8b3;
    }
    .third .circle:hover {
        background: #33d8b3;
    }
    .fourth .circle:hover {
        background: #33d8b3;
    }
    Hope this helps...!

    Thanks & Regards!
    Akbar
    InkThemes.com

    Note: You can use any color Hex code instead of #33d8b3 to set your desired color.
     
    gloryous likes this.
  3. gloryous

    gloryous Member

    Joined:
    May 25, 2012
    Messages:
    223
    Likes Received:
    8
    Perfect, Akbar! Thank you!
     
  4. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49

Share This Page