Is there way to block link, but don't hide text/image itself?
f.e. http://luxorfilm.ru/afisha/ - I want background to stay, but I tired of accidentally click it. Thanks.
How to block link, not object
Re: How to block link, not object
add & test
Code: Select all
luxorfilm.ru###lnkBranding
luxorfilm.ru##A[href^="http://www.luxorfilm.ru/Features/Banner.ashx?"]
Re: How to block link, not object
It works, thanks. But I suppose there is no universal way to do it? Because the top of https://www.lostfilm.tv/ is complitly disappear when I add "href" rule...mapx wrote:add & testCode: Select all
luxorfilm.ru###lnkBranding luxorfilm.ru##A[href^="http://www.luxorfilm.ru/Features/Banner.ashx?"]
Re: How to block link, not object
universal way ==> using stylish addon
for your case use this style
for your case use this style
Code: Select all
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("lostfilm.tv") {
A[title="War Thunder"] {
pointer-events: none;
}
}