• Closed
  • Georges KORVIN
    Spectator
    September 29, 2016 at 2:49 pm #30455

    I would like to change the background colour and the font colour of the sticky post which appears in my blog.
    Please, can you tell me the way to do this ?

    See the page : http://ilouest.fr/institut-locomoteur/actualites/

    Present background colour of the sticky post : green

    Thanks

    Denzel Chia
    Moderator
    Posts: 2656
    September 30, 2016 at 9:04 am #30476

    Hi,

    Please use the following in Theme Options -> Custom CSS

    .sticky {
    background: #ffffff none repeat scroll 0 0 !important;
    box-shadow: none !important;
    }
    .home .type-post.sticky .entry-title a, .home .formatted-post .entry-title a, .page-template-blog-page-php .type-post.sticky .entry-title a, .page-template-blog-page-php .formatted-post .entry-title a {
    color: #000000 !important;
    }

    You can change background color of #fff to a different color hex code.
    You can change the title color #000000 to a different color hex code.

    Thank you