Forum name, and topic headings
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!
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!
-
- BBCoder II
- Posts: 5
- Joined: 06 Apr 2010, 16:50
- Location: England
- Contact:
Forum name, and topic headings
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
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!
- Steve
- 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
you can find it in colours.css
find:
have a play with the code above
and use the code:
where is needed
hth Steve
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;
}
and use the code:
Code: Select all
font-weight: bold;
hth Steve
Re: Forum name, and topic headings
thanks steve, that is the file i meant!
-
- BBCoder II
- Posts: 5
- Joined: 06 Apr 2010, 16:50
- Location: England
- Contact:
Re: Forum name, and topic headings
Thanks, but I meant the categories headings, sorry xD Thanks for the help so far though
- Steve
- 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
this part then,
find:
have you seen this topic?
here: viewtopic.php?f=9&t=648
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;
}
here: viewtopic.php?f=9&t=648