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
Hi Munford!
try this code instead:
h3.av-magazine-title.entry-title {
pointer-events: none;
}
Best regards,
Andy
HI Andy
That code didn’t work for me…. :(
any other suggestions?
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
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
Hey!
Please try adding following code to Quick CSS
.av-magazine-top-bar > a {
pointer-events: none !important;
}
Cheers!
Yigit
Hej Yigit,
Great that did the trick!
thanks so much,
Nancy