Page 1 of 1

What controls the footers text color? [SOLVED]

PostPosted: Thu Sep 14, 2006 1:40 am
Author: Frost
Im making a theme for integramod 1.4.1 from the integra2 style and Im having a bit of trouble finding the area that controls the footers text color. The default is black, i want to change it accomidate my color scheme.

Protected by CBACK CrackerTracker :: 0 Attacks blocked.
Protected by phpBB Security ÂÂÂ © phpBB-Tweaks :: phpBB Security ÂÂÂ © Has Blocked 3 Exploit Attempts.

Simply The Best Premodded phpbb available phpbb, Creating Communities
:: Style Integra2 ÂÂÂ © IntegraMod Team 2006 :: All times are GMT ::


The text color in the {PROTECTED} for example.

Thanks, Chris

Re: What controls the footers text color?

PostPosted: Thu Sep 14, 2006 5:09 am
Author: BMD
You should be able to format the font as you would in any normal coding I think

PostPosted: Thu Sep 14, 2006 8:00 pm
Author: Frost
"BMD";p="15433" wrote:You should be able to format the font as you would in any normal coding I think


No I mean what file do I edit to change the default black text color? I've looked in the .css file but it isn't controlled there. I also looked in the overall_footer.tpl file and it wasn't in there.

Any ideas?

Re: What controls the footers text color?

PostPosted: Thu Sep 14, 2006 8:27 pm
Author: Helter
it is controlled by the .css class "gensmall"
Since there is no color specified for that class it uses the default body text color

Re: What controls the footers text color?

PostPosted: Thu Sep 14, 2006 8:37 pm
Author: Frost
Hmm :-?

Re: What controls the footers text color?

PostPosted: Thu Sep 14, 2006 10:19 pm
Author: Helter
you should make a new class and change the color. gensmall is used all over the forum

Re: What controls the footers text color?

PostPosted: Thu Sep 14, 2006 10:43 pm
Author: Frost
what about if I defined the class like this...

.ftcolor {
color: #000000;
text-decoration: none;
}

then used class=".ftcolor" in the overall_footer.tpl file?

Re: What controls the footers text color?

PostPosted: Fri Sep 15, 2006 1:32 am
Author: found it
that will work as long as you write it as class="ftcolor"

you might need to add a font class in the css file too for the size of the font...

.ftcolor {
color: #000000;
[color=red]FONT-SIZE]
text-decoration: none;
}

:mrgreen:

Re: What controls the footers text color?

PostPosted: Fri Sep 15, 2006 2:28 am
Author: Frost
then used class=".ftcolor" in the overall_footer.tpl file?
Oops :P

Re: What controls the footers text color?

PostPosted: Fri Sep 15, 2006 2:45 am
Author: Frost
Ok that worked perfectly :P