In the list that shows at site.com/forum there are columns for Topics and Posts... with numbers. I want to size those numbers down a bit, but can't seem to figure out how to do it.
Tried putting things like this in advanced_forum.css and style.css

.num posts, .num num-topics{
font-size: .75em;
}

But this seems to have no impact and my grasp of CSS is too basic to see why. Advice, anyone?

Comments

michelle’s picture

Status: Active » Postponed (maintainer needs more info)

Try:

.posts,
.num-topics {
font-size: .75em;
}

Michelle

aharown07’s picture

Yep. That works. Many thanks.

michelle’s picture

Status: Postponed (maintainer needs more info) » Fixed

Great. :)

Michelle

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

mrwhizkid’s picture

Status: Closed (fixed) » Active

Hello Michelle,

I also have a similar styling issue only I am trying to change the color of the unread topic count that appears under the Topics

I tried

.posts,
.num-new-topics {
color:red;
}

among a few other combinations with no luck. Thanks in advance.

aharown07’s picture

Haven't looked at it lately, but if the text involved are links, you may need the "a" in there

.posts,
.num-new-topics a {
color:red;
}

michelle’s picture

Status: Active » Fixed

Thanks, aharown07.

Michelle

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.