Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Adding Post Count to Profile


chrishajer
Participant

@chrishajer

Oddly, all the stuff over there is using the same CSS, which is a little weird. I think I would prefer to have .threadauthor .name, .threadauthor .post_count_plus, .threadauthor .status, .threadauthor .membersince, but that is not there now. If it were, it would be easy to add to style.css and style each item individually. But it’s not.

So, I just added this to .threadauthor in style.css:

font: 13px Verdana, Arial, Helvetica, sans-serif;

So now that block looks like this:

.threadauthor {
margin-left: -110px;
overflow: hidden;
position: absolute;
width: 95px;
font: 13px Verdana, Arial, Helvetica, sans-serif;
}

That worked for me. There are probably better ways to do it, by adding the proper classes to the template file or whatever generates that HTML, but barring that, this one line addition worked fine for me. If 13px is too small still, make it a larger number. You might also need to adjust the width after that.

Skip to toolbar