Page 1 of 1
Forum name, and topic headings
Posted: 07 Jul 2010, 23:06
by Limited Luck
Hey, I've been looking around in my forums CSS everywhere and simply can't find anywhere of which I can make the forum names on the index page and the 'announcements' and 'topics' headings above the list of topics in bold (and with a text shadow...) If I knew where to go I can add the code I want in myself but I just can't find the right css section, any help please?
Re: Forum name, and topic headings
Posted: 07 Jul 2010, 23:34
by cisco007
i am not exactly sure , but i am about 69.9999999% it's in the content.css can't exactly tell you the line of code to look for!
Re: Forum name, and topic headings
Posted: 08 Jul 2010, 10:01
by Steve
you can find it in colours.css
find:
Code: Select all
/* Links for forum/topic lists */
a.forumtitle {
color: #105289;
}
/* a.forumtitle:visited { color: #105289; } */
a.forumtitle:hover {
color: #BC2A4D;
}
a.forumtitle:active {
color: #105289;
}
a.topictitle {
color: #105289;
}
/* a.topictitle:visited { color: #368AD2; } */
a.topictitle:hover {
color: #BC2A4D;
}
a.topictitle:active {
color: #105289;
}
have a play with the code above
and use the code:
where is needed
hth Steve
Re: Forum name, and topic headings
Posted: 08 Jul 2010, 15:23
by cisco007
thanks steve, that is the file i meant!
Re: Forum name, and topic headings
Posted: 09 Jul 2010, 21:22
by Limited Luck
Thanks, but I meant the categories headings, sorry xD Thanks for the help so far though
Re: Forum name, and topic headings
Posted: 10 Jul 2010, 11:17
by Steve
this part then,
find:
Code: Select all
/*
--------------------------------------------------------------
Colours and backgrounds for links.css
-------------------------------------------------------------- */
a:link { color: #105289; }
a:visited { color: #105289; }
a:hover { color: #D31141; }
a:active { color: #368AD2; }
/* Links on gradient backgrounds */
#search-box a:link, .navbg a:link, .forumbg .header a:link, .forabg .header a:link, th a:link {
color: #FFFFFF;
}
#search-box a:visited, .navbg a:visited, .forumbg .header a:visited, .forabg .header a:visited, th a:visited {
color: #FFFFFF;
}
#search-box a:hover, .navbg a:hover, .forumbg .header a:hover, .forabg .header a:hover, th a:hover {
color: #A8D8FF;
}
#search-box a:active, .navbg a:active, .forumbg .header a:active, .forabg .header a:active, th a:active {
color: #C8E6FF;
}
have you seen this topic?
here:
viewtopic.php?f=9&t=648