funki theme: the font in the post has the same color of the paragraph font

  • Unknown's avatar

    Hello,
    I have a new little new problem with CSS.

    After sticked post to the front page automaticaaly I should have on the image the graphic for title and for text, togheter fonts are coloured white like here:
    http://massgenova.files.wordpress.com/2012/02/question_font.jpg

    But when add the post, the title-post is correctly white but the text-post is black because it takes the same color of the paragraph-text in CSS.
    http://massgenova.com/
    So if I want it white I have to change the CSS: p {color:white} but then all text in my page became white.

    I need to separate them by CSS, I think or there is a special code for post-text?

    thanks
    fra

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    sorry, here the correct link where you see that fonts from post and paragraph have different colors.

  • Unknown's avatar

    So if I want it white I have to change the CSS: p {color:white} but then all text in my page became white.

    I need to separate them by CSS, I think or there is a special code for post-text?

    What you can do is make the rule more specific. For example, if you just wanted to change all paragraphs inside the post content area to red, you would add something like this:

    .entry-content p {
      color: red;
    }

    To target just the paragraph text inside the Funki theme feature slider, try this:

    .entry-summary p {
      color: red;
    }

    To also change the headings inside that same area, you would use this:

    .featured .entry-title a, .featured .entry-title a:hover {
      color: red;
    }
  • Unknown's avatar

    Perfect! now I can change all the different texts independently

    thanks so much
    fra

  • Unknown's avatar
  • The topic ‘funki theme: the font in the post has the same color of the paragraph font’ is closed to new replies.