• Resolved Kim

    (@tauq)


    Hello,

    I’ve searched and searched but haven’t found anything that really works.
    What I want to do is change the size of the category text that’s connected to the blog post.

    Like if you look at the index page you see “Efterr?tter” and ”F?rr?tter” right below of the images. That’s the text size I want to edit and also the date of the post and the comment text right next to the date of the post.

    Thanks in advance
    Kim

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • Are you familiar with using the “inspector” on most browsers? If you select the content you want to change then right-click you can select “inspector” (chrome). When you do this you should be able to see the class that controls that content.

    Once you know the class you can adjust it by placing the updated .css in the Customizer .css area.

    If I am correct I found this for date and category…

    .entry-date {
    font-size: 35px;
    }

    .entry-category {
    font-size: 35px;
    }

    You may want to play around to barrel down to the specific as these may change things in other locations also. If you want it just on the single pages.. you could add this…
    .single .entry-date {
    font-size: 35px;
    }

    etc… etc…

    Thread Starter Kim

    (@tauq)

    @technosysf That worked for the Comment text but not for the categories.

    @kimwhite Didn’t work either ??

    Have you found the style you need to change?
    What did not work?

    The “Additional CSS” should be the last to load.
    You may have to play around till you find the style you are looking for.

    Even better, your theme author might have insight.

    • This reply was modified 5 years, 2 months ago by Kim White.
    Thread Starter Kim

    (@tauq)

    @kimwhite I’ve added your css code again. Here
    Easier if you look for yourself.
    The date changes size but nit the categories. The categories do however work on other pages.Here

    • This reply was modified 5 years, 2 months ago by Kim.
    • This reply was modified 5 years, 2 months ago by Kim.

    Great! I was looking at a single page.

    what about .cat-links? for that page?

    Thread Starter Kim

    (@tauq)

    .entry-date {
    font-size: 35px;
    }
    
    .entry-category {
    font-size: 35px;
    }
    
    .cat-links{
    font-size: 35px;
    }

    Like this?

    Thread Starter Kim

    (@tauq)

    That worked like a charm. Thank you.

    Have a good time till next time I’m in need of support.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘CSS Font Size for category text and date of the post’ is closed to new replies.