On 16.06.2013 07:01, Ben Stover wrote:
According to some former suggestions here I added the following statement to a 
GM script:

GM_addStyle("div.footer-info-copyright-info { display: none;!important; }");
Two problems here with the CSS selector and style:


1. The correct style to override the existing display attribute would be

display: none !important;

2. Looking at the page you mentioned, there is no div with id ".footer-info-copyright-info", which would actually be an invalid ID since ids have to (essentially) start with letters.

There is a div with id "footer-info-copyright-info", so the appropriate selector for that would be #
footer-info-copyright-info, i.e.

GM_addStyle("div#footer-info-copyright-info { display: none !important; }");
or
GM_addStyle("#footer-info-copyright-info { display: none !important; }");


--
Klaus Johannes Rusch
[email protected]
http://klausrusch.atmedia.net/

--
You received this message because you are subscribed to the Google Groups 
"greasemonkey-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/greasemonkey-users.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to