Need help? Check out our Support site, then


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

  1. 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

  2. sorry, here the correct link where you see that fonts from post and paragraph have different colors.
    http://massgenova.files.wordpress.com/2012/02/senza-titolo-14.jpg

  3. 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;
    }
  4. Perfect! now I can change all the different texts independently

    thanks so much
    fra

  5. Cheers :)

Topic Closed

This topic has been closed to new replies.

About this Topic