Deactivate hyperlink on feature images in Golden Eagle

Discussion in 'Forum Rules' started by taasvik, Mar 21, 2014.

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

    taasvik New Member

    Joined:
    Mar 10, 2014
    Messages:
    3
    Likes Received:
    0
    Hello, I am wondering how I can deactivate the link function on the feature images under the slider? I would like to deactivate the first three, and keep the last one.

    Great theme, by the way! Making this site for my daughter's day care provider:

    http://zenbarna.org/wp/
     
  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:
    .feature-content .feature-box.gallery .feature-box-inner:nth-child(1) img {
    pointer-events: none;
    }
    .feature-content .feature-box.gallery .feature-box-inner:nth-child(2) img {
    pointer-events: none;
    }
    .feature-content .feature-box.gallery .feature-box-inner:nth-child(3) img {
    pointer-events: none;
    }
     
    This will solve your issue.
     
  3. taasvik

    taasvik New Member

    Joined:
    Mar 10, 2014
    Messages:
    3
    Likes Received:
    0
    Thank you so much for your help. Just love your theme!
     
Thread Status:
Not open for further replies.

Share This Page