• on the main page of my blog the link to “comment” at the end of a post is extremely small. I would like to increase the size of the comment link, but not any other links (author, tags, etc) but I cant figure out how. I’ve tried looking through the .php files but I cant find any variables for font size.

    any help would be appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter blackmajik2021

    (@blackmajik2021)

    .tile .links {
    z-index:10;
    position:absolute;
    bottom:8px;
    left:0;
    height:32px;
    width:100%;
    }
    .tile .links .date{
    font-size:1.9em;
    text-indent:0.8em;
    padding:0;
    float:left;
    width:260px;
    line-height:32px;
    }
    .tile .links .comments {
    float:right;
    }
    .tile .links .comments a{
    margin:4px 6px 0 0;
    /*padding: 2px 0;*/
    text-align:center;
    width:14px;
    height:14px;
    /*background:url(images/comments.png) no-repeat 3px 1px;*/

    I edited the font size I marked in bold, but nothing changed…any ideas?

    Your comments link does not a have a class tag. So you can’t style it diffrently from the rest of the links

    to fix this you need to make some changes in the php files of your theme. Most likely index.php and maybe page.php. change the comments link to:

    <a class="comments" href="<?php comments_link(); ?>">
          Comments to this post
    </a>

    You can then style it seperately using css

    a.comments {
     font-size: 14px;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘yet another constructor question.’ is closed to new replies.