Increase font size in Google Reader
Posted by ark, ,
I find the font size for the articles in google reader too small. Increasing the font size using command+ in firefox works, but the lens on the right is all misaligned after I've done it and I never feel comfortable hitting reload to make it recalculate the lens size.

If you add this to your userContent.css in the chrome directory in your profile directory the font will be bigger and more readable.
@-moz-document url-prefix(http://www.google.com/reader/) {
.item-body-container {
font-size: 130%!important;
}
.queue-buttons a {
font-size: 80% !important;
}
}
If you don't have a userContent.css you might have a userContent-example.css just copy that over and add these lines.

Comments