Bumblebee
08-Nov-2002, 12:32 AM
I want
to change the color of the welcome back sentence and the color of the text
in the forum but I don't know where to find the code. Can anyone help
me out? Thanks a lot!
Aristia
08-Nov-2002, 07:59 AM
welcome
back? where is that?
Is it on a portal you mean?
--please
excuse me as i not feeling so great at the mo, and my eye is funny so i
can see straight. (so my brain not working too good lol
zxoltar
08-Nov-2002, 03:35 PM
for the welcome back text, and the post text. the text color is
controlled by the css for the skin.
if you hit the admincp and goto
the stylesheet for your skin, the top 3 lines are like
this
form { display: inline
}
TABLE, TR, TD { font-family: Verdana, Tahoma, Arial;
font-size: 8.5pt; color: #193A99
}
it controls more than just the 2
parts you want to change, so if you just want those done, you will need
manually enter in a text color just in those parts, or add an entry into
the style sheet and call them for those parts
the welcome back text
is located in the the board index/page top when you go to manage html in
the skin template
Well have working with it for a bit, the best way
with pinpoint control for me, was in the template/boardindex/page
top looks like this below
<table cellpadding='4'
cellspacing='0' border='0'
width='<{tbl_width}>' align='center'>
<tr>
<td align='left'
valign='bottom' ><!-- IBF.NEWSLINK
--><font color="#00FFFF">{ibf.lang.welcome_back_text}
$lastvisit</font></td>
<td
align='right' valign='bottom'> </td>
</tr>
</table>
Where it says <font
color="#00ffff"> that is where you need to put the font
color and just change the welcome line.
added the closing font tag as i
forgot about that, it isn't absolutely necessary but some folks will
say it is, and proper coding says you should also. so i put it there.
:)