• Hi – I am using the Kale theme and for some reason, my bullet lists and link colour of text in posts have reverted back to its original state, even thou the coding is still there. I have had no problems previously, but all of a sudden the links are no longer blue, and my bullet lists have reverted back to its original tiny size.

    This is the code I have in my bullet list to increase the line size:
    <ul style=”line-height: 1.7;”>

    This is the code I have in my CSS to increase the font size of my bullet list:
    .entry-content li {
    font-size: 17px;
    }

    This is the code I have in my CSS for the hyperlink colour:
    .entry-content a {
    color: #328cc1 !important;
    }

    I note that on my blog page the post title is blue (hyperlinked).

    I have had it set up for 1-2 months with no problems, then all of a sudden, 2 days ago, just the bullet list and the hyperlink text in posts reverted back to their original theme state, but the coding is still there??

    Can anyone advise how to fix this please.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 16 through 18 (of 18 total)
  • Here’s the missing ingredient: just add , .entry-page li between .single-content li and {.

    For your convenience, just copy-paste everything below:

    .entry-content li, .entry-post .single-content li, .entry-page li {
            font-size: 17px;
    }
    
    .page-content ul, .entry-post .single-content ul {
            line-height: 1.7em;
    }
    .page-content li > a  {
            font-size: 17px;
    }
    .entry-post .single-content a {
            font-size: 1em;
            color: #328cc1;
    }
    
    .page-content a, .entry-post .single-content a,
    .page-content a:hover, .entry-post .single-content a:hover,
    .page-content a:visited, .entry-post .single-content a:visited,
    .page-content a:active, .entry-post .single-content a:active,
    .page-content a:focus, .entry-post .single-content a:focus {
        color: #328cc1 ;
    }
    Thread Starter makingcentsinlife

    (@makingcentsinlife)

    @ricotheque Super happy Yay! Doing my happy dance! It all looking good now! Thank you so much for helping me get this sorted. Yay!!

    Thanks team!

    Glad to be of help! Let us know how else we can assist. 🙂

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Bullet list and link colour have reverted back to original’ is closed to new replies.