display comments/make comments link bigger

  • I’d like my comments displayed under each post, but according to a post on the forum I can’t do this. Is there any way to make my link bigger, or change the text to “leave a comment here” rather than “no comments” I have the css upgrade but I have guessed my way through it till now. This is my blog http://blog.lizzyc.com.au (I am hosting through wordpress.com)

  • There is no way as far as I know to change the wording of the comments button, but you can make it larger via CSS.

  • You are correct – there is no way to show the comments directly. And you cannot change the text – that information is in the HTML files that we do not have access to .

    You can make the link bigger by adjusting the size of the font as follows:

    .postinfo a{
    	font-size: 15px;
    }

    Note that it affects all of the items there, since they are not separate elements. (Make the font-size whatever you want it to be. I just used 15px to make it significantly larger.)

    HTH

  • The topic ‘display comments/make comments link bigger’ is closed to new replies.