Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #27726

    The default size in the bullet list is smaller then the size of normal page of post font. How can I change the font size in the bullet lists in Quick CSS?

    Thanks,

    Regards

    Michiel

    #135144

    Hey,

    Just add this:

    .entry-content li {
    font-size: 14px;
    }

    Adjust the font size.

    Regards,

    Ismael

    #135145

    Hi Ismael,

    Thank you.

    Can you also help me change the fonts of title, H1, H2, H3 etc.. in a blog and page… and also on the blog overview page so it’s very clear what the title is and what subtitles. Right now in default the H2 is bigger dan the H1.

    Thanks

    Michiel

    #135146

    Hi,

    You can change the blog post title using this:

    h2.post-title a {
    font-size: 30px;
    }

    The main title, using this:

    .main-title a {
    font-size: 40px;
    line-height: 60px;
    }

    Regards,

    Ismael

    #135147

    Hi Ismael,

    thanks, but this code doesn’t affect the H2 font size:

    h2.post-title a {

    font-size: 30px;

    }

    But if I use this for h1:

    h1.post-title a {

    font-size: 30px;

    }

    it works.

    What goes wrong? This is my code in Quick CSS:

    .template-blog .post .entry-content {

    font-size: 15px;

    }

    p {

    font-size: 15px;

    line-height: 25px;

    }

    .entry-content li {

    font-size: 15px;

    }

    h1.post-title a {

    font-size: 30px;

    }

    h2.post-title a {

    font-size: 20px;

    }

    #135148

    Hey,

    If the code you provided works then it is ok.

    Regards,

    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘how to change font size in bullet list?’ is closed to new replies.