Closed (fixed)
Project:
Advanced Forum
Version:
6.x-1.0-alpha13
Component:
Styles
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
15 Dec 2008 at 23:34 UTC
Updated:
8 Apr 2010 at 21:20 UTC
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
Comment #1
michelleTry:
.posts,
.num-topics {
font-size: .75em;
}
Michelle
Comment #2
aharown07 commentedYep. That works. Many thanks.
Comment #3
michelleGreat. :)
Michelle
Comment #5
mrwhizkid commentedHello 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.
Comment #6
aharown07 commentedHaven'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;
}
Comment #7
michelleThanks, aharown07.
Michelle