CSS font colors for

  • Unknown's avatar

    Hi
    is there a CSS to change the color of the wide first post which had a square overflowing (before and after hovering)?

    and for the LATEST section at the left of the site (before and after hovering)

    and the CINEMA section which is in gray background

    and for the SELECTED section (before and after hovering)

    and for the dates of all posts

    sorry for the many questions and thanks in advanced.

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

  • Sorry, I did not understand anything except about post dates.

    This CSS changes the color of the “Published on 05/03/2015”

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

    Hi there
    thanks, it worked.

    for the others, i meant there are posts in the front page whose titles’ colour did not change by a previous CSS given to me, here they are:

    and is there a way to remove the word “published” at the top of each post.

    thanks

  • there are posts in the front page whose titles’ colour did not change by a previous CSS given to me

    Please try this CSS:

    .front-fullwidth .rp-big-one-content .entry-header h2.entry-title a {
        color:  green;
    }
    
    .front-fullwidth .rp-big-two-content .entry-header h2.entry-title a {
        color:  red;
    }

    is there a way to remove the word “published” at the top of each post.

    .entry-date {
        visibility: hidden;
    }
    
    .entry-date a {
        visibility: visible;
        color: red;
    }
  • Unknown's avatar

    thanks a lot.
    the “published” issue was solved perfectly, but the first one not really.

    this did not work:
    .front-fullwidth .rp-big-one-content .entry-header h2.entry-title a {
    color: green;
    }

    and this worked but the color doesn’t change while hovering:
    .front-fullwidth .rp-big-one-content .entry-header h2.entry-title a {
    color: green;
    }

    i would be grateful if you cold help

    thanks

  • Please try this CSS:

    .front-fullwidth .rp-big-one-content .story h2.entry-title a {
        color:  green;
    }
    
    .front-fullwidth .rp-big-one-content .story h2.entry-title a:hover,
    .front-fullwidth .rp-big-one-content .story h2.entry-title a:focus,
    .front-fullwidth .rp-big-one-content .story h2.entry-title a:active {
        color:  gray;
    }
    
    .front-fullwidth .rp-big-two-content .entry-header h2.entry-title a {
        color:  red;
    }
    
    .front-fullwidth .rp-big-two-content .entry-header h2.entry-title a:hover,
    .front-fullwidth .rp-big-two-content .entry-header h2.entry-title a:focus,
    .front-fullwidth .rp-big-two-content .entry-header h2.entry-title a:active {
        color:  gray;
    }
  • The topic ‘CSS font colors for’ is closed to new replies.