Page 1 of 1

Problem With subBlack and a color on information

PostPosted: Wed May 10, 2006 3:28 am
Author: glsdragon
Ok, this is what i am getting with the subBlack theme
[img]http://i35.photobucket.com/albums/d194/glsdragon/problem.jpg[/img]

Where cna i change that font color, i've tried to edit the style but i can't find the color code for this. thanks for the help

oh and this is after i update my profile or something like that.

Re: Problem With subBlack and a color on information

PostPosted: Wed May 10, 2006 6:34 am
Author: Helter
in the .css, the default text is indefined, so it defaults to black. I thought I had fixed this. I copied all the templates from forumimages to here, and I may have missed the fixed file. Ill look into this after work tonight

quick fix

open subBlack.css

find

font,th,td,p { font-family: Verdana, Arial, Helvetica, sans-serif }

replace with

font,th,td,p { color : #FFFFCC; font-family: Verdana, Arial, Helvetica, sans-serif }

Re: Problem With subBlack and a color on information

PostPosted: Wed May 10, 2006 11:26 am
Author: glsdragon
hmmm, still does it. This is what the code looks like now


/* General font families for common tags */
font,th,td,p { color : #FFFFCC; font-family: Verdana, Arial, Helvetica, sans-serif }
a:link,a:active,a:visited { color : #FFFFCC; text-decoration: none; }
a:hover { text-transform: color : #FFCC00; }
hr { height: 0px; border: solid #CCCCCC 0px; border-top-width: 1px;}

what am i doing wrong?

PostPosted: Wed May 10, 2006 11:55 am
Author: glsdragon
nvm i got it, i think the cache on my computer was just showing the same thing.

PostPosted: Wed May 10, 2006 12:04 pm
Author: Adrian Rea
Is it the text 'Your profile has been updated

Click xxxx to return to Registration information'

or the link text 'Here'?

if it is hte first then the color controlling that is
body{background:#1D1E20;color:#CCCCCC;font:12px Verdana,Arial,Helvetica,sans-serif;margin:6px;padding:0;
and the latter is the link controlled by
/* General page style */
a:link,a:active,a:visited,a.postlink{color:#CCCCCC;text-decoration:none}
a:hover{color:FFFFFF;text-decoration:none}
Where cccccc is the color to change in each instance. However, this dramatically changes the rest of your text so are you looking for a new color ONLY in this particular piece of text?

A

PostPosted: Thu May 11, 2006 8:43 am
Author: Eon
Yeah I went through all this myself too. <img> Haha got subBlack running like a russian race horse now. Made a few other tweaks.

Re: Problem With subBlack and a color on information

PostPosted: Fri Feb 19, 2010 12:23 am
Author: Lycanth
Is there any way to change the font used for forum titles/box titles?

Re: Problem With subBlack and a color on information

PostPosted: Fri Feb 19, 2010 7:50 am
Author: Helter
for forum titles open subblack.css
FIND
Code: Select all
.cattitle         { font-weight]
REPLACE WITH
[code].cattitle         { font-weight]

the block titles are just a general th tag so changing them will also make changes to other areas. to change them...
FIND
[code]/* Header cells - the black gradient backgrounds */th   {

AFTER, ADD
[quote]font-family]

you can change Veranda on both entries to the font you want to use. If the user does not have your selected font on their computer, they will see Arial as the font since it is next inline.

Re: Problem With subBlack and a color on information

PostPosted: Fri Feb 19, 2010 4:50 pm
Author: Lycanth
Thank you! *goes to give it a try*