• Hi guys,

    I have more questions to ask. Please help me.

    1. How can I change the font size of the text in any post?

    2. How can I make the post title bold, change its color and size?

    3. How can I change font for bullet (numbering and bullet points)?

    Thank you so much.

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi there
    1.try this

    .entry-content p{
    font-size:20px;
    }

    to change the font size in all posts everywhere.
    2. Add this

    .single h2.entry-title {
    font-size:30px;
    font-weight:bold;
    color:red;
    }

    in your custom CSS box for your single title
    3. Try this

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

    for your list style.
    Let me know if you need additional help on this.

    Thread Starter vananhthang

    (@vananhthang)

    Thanks Fotis,

    One more questions, please:

    How can I remove Archives in the site title? When I click any item on the menu, it always appears like this “Content Writing Archives – A Technical Writer”.

    For example:

    https://www.atechnicalwriter.com/category/technical-writing/

    Please help me. Thanks a lot.

    Hi,
    you can try adding this

    add_filter( 'get_the_archive_title', function ($title) {
    
        if ( is_category() ) {
    
                $title = single_cat_title( '', false );
    
            } elseif ( is_tag() ) {
    
                $title = single_tag_title( '', false );
    
            } 
    
        return $title;
    
    });

    in your functions.php file.
    Let me know if this works, or if I can help out more.

    • This reply was modified 6 years, 4 months ago by Fotis.
    Thread Starter vananhthang

    (@vananhthang)

    Thanks Fotis, but it doesn’t work. Please help me out. Thank you.

    Hi there,
    can you send me an archive with some posts so I can check this out?

    Thread Starter vananhthang

    (@vananhthang)

    Hi Fotis,

    I am trying to figure it out. I will let you know if it works.

    Thank you so much.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Some questions’ is closed to new replies.