how to make portal titles bigger?

pheyde

Member
hey the guy that made the skin i use doesnt support mods.

i wana know how i can make the forum titles in xenporta recent news portal bigger?? thanks
 
Try this:

Code:
.recentNews .subHeading a {
font-size: 20px;
color: #123456;
}

You may wish to add visited and hover:

Code:
.recentNews .subHeading a,
.recentNews .subHeading a:visited,
.recentNews .subHeading a:hover
{
font-size: 20px;
color: #123456;
}
 
Try this:

Code:
.recentNews .subHeading a {
font-size: 20px;
color: #123456;
}

You may wish to add visited and hover:

Code:
.recentNews .subHeading a,
.recentNews .subHeading a:visited,
.recentNews .subHeading a:hover
{
font-size: 20px;
color: #123456;
}
thanks. works , i used 2nd code, but the color only shows when i hover over. forum link in sig if need to check
 
oh ok i just realised that its showing my custom colors correctly. but its not working for unread forum titles , once the topic is read, then it will show in my custom color i wanted. how to fix?
 
Top Bottom