Anyone know how to make JUST the thread title bold?
I've tried making it bold and it makes other text bold aswell, i just want the thread title bold
(http://i.imgur.com/4n9hTBE.png)
Got a link?
add this to your index.css (to end of the file)
#messageindex .subject a {
font-weight: bold;
}
Quote from: Antes on January 17, 2015, 05:01:20 AM
add this to your index.css (to end of the file)
#messageindex .subject a {
font-weight: bold;
}
Thank you, It worked!
How come when I tried this, its made the subject line bold ok, but also made the posters name bold? How do you just make the subject words bold but not the posters name?
Try this instead:
#messageindex .subject a {
font-weight: bold;
}
#messageindex .subject a:last-child {
font-weight: normal;
}
Quote from: Antechinus on January 18, 2015, 11:59:48 PM
Try this instead:
#messageindex .subject a {
font-weight: bold;
}
#messageindex .subject a:last-child {
font-weight: normal;
}
that doesnt change the subject but does make the posters name bold
#messageindex .subject a {
font-weight: bold;
}
#messageindex .subject p a:first-child {
font-weight: normal;
}
that did it! thank you ;) ;)
Been a while since I looked at default 2.0.x markup, so had to go pick it out of the message index here. :D