Forum name, and topic headings

Support for PhpBB3. Post here to get help with any phpBB3 related issue here
There is no support here! Only Read Access!
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.
Else your topic may be ignored or locked!
Locked
Limited Luck
BBCoder II
BBCoder II
Posts: 5
Joined: 06 Apr 2010, 16:50
Location: England
Contact:

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?
cisco007
BBCoder VI
BBCoder VI
Posts: 1015
Joined: 16 Mar 2010, 18:14
Location: Don't really know!

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!
User avatar
Steve
BBCoder VI
BBCoder VI
Posts: 848
Joined: 05 Mar 2010, 01:10
BBCodes: 2000
Favourite BBCode: p**n tube
Favourite MOD: Non of Stokers

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
Steve wrote: 14 Nov 2024, 16:45 It's happy bastard day!
cisco007
BBCoder VI
BBCoder VI
Posts: 1015
Joined: 16 Mar 2010, 18:14
Location: Don't really know!

Re: Forum name, and topic headings

Post by cisco007 »

thanks steve, that is the file i meant! :D
Limited Luck
BBCoder II
BBCoder II
Posts: 5
Joined: 06 Apr 2010, 16:50
Location: England
Contact:

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 :)
User avatar
Steve
BBCoder VI
BBCoder VI
Posts: 848
Joined: 05 Mar 2010, 01:10
BBCodes: 2000
Favourite BBCode: p**n tube
Favourite MOD: Non of Stokers

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
Steve wrote: 14 Nov 2024, 16:45 It's happy bastard day!
Locked