• How do you adjust the font on the comment link? It’s the comment link under posts that has date on it as well. I have searched everywhere trying to find an answer. Here is the site: https://www.sheradeehurst.com. You can see under one of the posts the comment link…you can barely see it.

    Please help! Also I need to know how you adjust the font size through the blog? I can’t find anywhere on how to do this. I changed the font on the headers for each post and the font on each post, but I can’t find where you change the font size in the post.
    Thanks!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Download the Jetpack plugin and use its Custom CSS functionality to hold this CSS;

    .postmetadata {
     font-size: 1em;
    }

    Thread Starter christmas04

    (@christmas04)

    I downloaded it, but I don’t know what to do from here. Is there an easier way? I have to get it fixed by tomorrow…..any help? Thanks!!

    open style.css file
    goto line 223
    your current code is:

    .postmetadata {
    	background: #000;
    	padding: 1em;
    	color: #999;
    	font-size: 3px;
    	-moz-border-radius: 5px;
    	-khtml-border-radius: 5px;
    	-webkit-border-radius: 5px;
    	border-radius: 5px;
    }

    change “font-size” value to 1em:
    font-size: 1em;
    done!

    Thread Starter christmas04

    (@christmas04)

    It worked! Thanks sooooo much!!!

    Do be aware that making changes in theme files (as you just did) is not recommended — that’s why Andrew suggested you use Custom CSS. As is, your changes will be erased when the theme is updated. With custom CSS, they will be saved. Just FYI.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Comment link is super small’ is closed to new replies.