View Single Post
Old 12-30-2010, 05:32 PM   #1
tfeld
Junior Member
tfeld began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Dec 2010
Device: PRS650
Unhappy How to change .article_description font size?

Hi everybody,

in my recipe I wanted to override the default CSS of a news recipe. So I added:

Code:
    extra_css = '''
        .article_date {
              color: black;
              font-size: small;
              display: block; }
        .article_description {
              color: gray;
              display: block;
              text-indent: 0;
              font-size: large; }
    '''
The change of the font size in the .article_date works as expected. Unfortunately, the font size of the .article_description does not.

What am I doing wrong here?
tfeld is offline   Reply With Quote