How to CSS color?

senna

New Member
68v95i.jpg


Guys I cant find how to change this green in black color,did not
found it in CSS?
 
Admincp >> Styles & Templates >> Search in Templates

search for

Code:
<!-- icons and login code -->

below that should be the new/old icon code...because that style is not in default format you may need to add:
Code:
style="background:#000;"
to the table
 
this is that code in forumhome.
where exactly?

Code:
<!-- icons and login code -->
<table cellpadding="2" cellspacing="1" border="0" class="bottom_legend">
<tr>	
			<td class="smallfont"><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" />&nbsp; $vbphrase[forum_contains_new_posts]</td>
			<td class="smallfont"><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" />&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
		<if condition="$vboptions['showlocks']">
			<td class="smallfont"><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" />&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
		</if>
</tr>
</table>
<if condition="!$show['guest']">
	<!-- member logout -->
	<div style="float: $stylevar[align=right]"><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]"  onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></div>
	<!-- end member logout -->
</if>
<!-- / icons and login code -->
 
problem solved I remove code for icons in forum home but in postbit
have same problem:

fvitki.jpg


where is that code?
 
Back
Top