Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #500621

    Hi Guys

    I am using the magazine element on several pages, like the one below, but want to disable the link on just the title/heading. I found this:

    .av-magazine-top-bar {
    pointer-events: none;
    }

    but that also disabled the links on the sorting categories.
    Is it possible to have the links still work on the categories, but be disabled on the title itself?
    thanks
    Nancy

    • This topic was modified 9 years, 2 months ago by Munford.
    #501144

    Hi Munford!

    try this code instead:

    h3.av-magazine-title.entry-title {
    pointer-events: none;
    }
    

    Best regards,
    Andy

    #501161

    HI Andy
    That code didn’t work for me…. :(
    any other suggestions?

    #501636

    Hey!

    I can’t see in your source code that you are using my code and I think it should work fine. However, try to add an !important into it:

    h3.av-magazine-title.entry-title {
    display: none !important;
    }
    

    Best regards,
    Andy

    #501645

    Hi Andy,
    thanks – I rechecked the css (had an unclosed bracket ) and now it’s right but it still doesn’t work – instead it took the titles off my portfolio items… what I want is to remove the link on the title “TRIPS TO:” above the mag element…
    :(
    any ideas?
    n

    • This reply was modified 9 years, 2 months ago by Munford.
    #501703

    Hey!

    Please try adding following code to Quick CSS

    .av-magazine-top-bar > a {
        pointer-events: none !important;
    }

    Cheers!
    Yigit

    #501857

    Hej Yigit,
    Great that did the trick!
    thanks so much,
    Nancy

    • This reply was modified 9 years, 2 months ago by Munford.
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘disable magazine title link?’ is closed to new replies.