Forum name, and topic headings

Support for PhpBB3.
Post here to get help with any phpBB3 related issue
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
If not your topic may be ignored or locked!

Forum name, and topic headings

Post 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

Post 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

Post 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:

Code: Select all

font-weight: bold;
where is needed :)

hth Steve

Re: Forum name, and topic headings

Post by cisco007 »

thanks steve, that is the file i meant! :D

Re: Forum name, and topic headings

Post 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

Post 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