Okay
  Public Ticket #2453191
Recent Posts Font Color
Closed

Comments

  •  4
    ContentGaucha started the conversation

    Heya Salient Team,

    I looked through past tickets from others and found the below CSS for a ticket in March.

    body .blog-recent[data-style="classic_enhanced"] .inner-wrap .article-content-wrap .excerpt {
        color : #000000 !important;
    }
    .home .blog-recent .col .post-header * {
        color : #000000 !important;
    }

    I used it and was able to successfully employ it to change the excerpt font color to black on the front page. Yay!

    But... Always a BUT... This did not have any affect on the actual blog page. :(

    Would you have something I could deploy to change that font color on the blog page?

    Thank you in advance,

    Laura

  •  2,979
    Andrew replied

    Hi Laura,

    Use the following custom css:

    .masonry.classic_enhanced .masonry-blog-item h3.title, .blog-recent[data-style*="classic_enhanced"] h3.title {
        color: #000000 !important;
    }
    .blog .masonry.classic_enhanced .post .post-meta a, .masonry.classic_enhanced .post-header, .masonry.classic_enhanced .post .excerpt, .blog-recent[data-style*="classic_enhanced"] .excerpt, .blog-recent[data-style*="classic_enhanced"] .post-meta a {
        color: #000000 !important;
    }
    

    Hope this helps.

  •  4
    ContentGaucha replied

    Hey Andrew!

    Thank you! Works perfectly. Learned more. 

    Always a pleasure!

    Cheers,

    Laura