How to block google logo image in Firefox

1

I am using Firefox 21.0 in Linux Slackware. I have Adblock Plus addon. Wanted to block this Google logo near the search panel:

enter image description here

I found, that this element in located in <a class="gb_ob gb_la". When I delete this element in DOM panel, the image disappears. But when I added google.co.uk##a[class="gb_la"] to Adblock filter, it doesn't block this element.

What's wrong?

user4035

Posted 2014-01-04T02:54:06.437

Reputation: 821

In chrome I right clicked on it and then added the image to block list and it disappear, did you tried that? Can you post a full SS of the screen too? – avirk – 2014-01-04T03:48:26.530

@avirk Unfortunately, there is no image block list in firefox. I tried to install the addon, but it didn't work. Can you look in firefox, if you have it? – user4035 – 2014-01-04T04:13:44.273

@avirk "Can you post a full SS of the screen too?" I can, but won't it be too big to fit the page? – user4035 – 2014-01-04T04:14:33.213

yes it seems Firefox has their own home page with that logo so adblock right click menu doesn't showing up while in chrome it is working like a charm. I'll see if i could find a way with firefox because my favorite browser is chrome. – avirk – 2014-01-04T04:41:20.750

Answers

0

You can put this in userContent.css file or write a new style with it using Stylish to block it:

@-moz-document url("about:home") {
#searchEngineLogo {
display: none !important;
}
}

Keith

Posted 2014-01-04T02:54:06.437

Reputation: 116