• I’m using Elegant Grunge theme and would like to increase the font size of people’s comments.

    I’ve tried to update the stylesheet for fontsize to 1.3em, but it does not change anything in my blog. Where do I find the correct code to increase the font size of people’s comments?

Viewing 3 replies - 1 through 3 (of 3 total)
  • A link to your site would help.

    Thread Starter visualrabbi

    (@visualrabbi)

    My bad. Here is a link to my blog.

    https://www.thevisualchurch.com/blog/

    If you want to reduce all of the comment text:

    style.css (line 375)

    .commentlist .comment {
    	background:transparent url(images/comment-middle.jpg) repeat-y scroll 0 0;
    	font-size:1.3em;
    	margin:0;
    	padding-left:26px;
    	padding-right:10px;
    	width:451px;
    }

    Change to:

    .commentlist .comment {
    	background:transparent url(images/comment-middle.jpg) repeat-y scroll 0 0;
    	font-size:.65em;
    	margin:0;
    	padding-left:16px;
    	padding-right:10px;
    	width:451px;
    }

    Note: I’ve also reduced the padding on the left-hand side of the comments to shift them over slightly and away from that right-hand edge.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How do I increase the font size of comments in Elegant Grunge?’ is closed to new replies.