Hmm, I am a bit confused about your descriptions.
Lets assume I have the following piece of CSS code (=part of a bigger
CSS stylesheet):
.articleContent .module .text p {
font-family: Arial,Verdana,Helvetica,sans-serif;
}
.articleContent .module .text p {
font-size: 14px;
line-height: 23px;
}
Now I want to automatically change it to:
.articleContent .module .text p {
font-family: Verdana;
}
.articleContent .module .text p {
font-size: 12px;
line-height:14px;
}
How exactly would a greasemonkey script look like?
Ben
--
You received this message because you are subscribed to the Google Groups
"greasemonkey-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/greasemonkey-users?hl=en.