jet2000 |
09-12-2007 11:20 PM |
$navbar/navbits issue
I am using a form hack. On the form page, the text next to the https://vborg.vbsupport.ru/external/2009/12/11.gif icon is white. Everywhere else on the forum, the text is black.
I cant figure out whats triggering it to be white or how thats even possible.
Code:
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - $formtitle</title>
</head>
<body>
$stylevar[htmldoctype]
<p>
$headinclude
<p>
$header
$navbar
it then continues on to start the form.
Code:
<!-- main -->
<if condition="$preview">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="95%" align="center">
<tr>
<td class="tcat">
Preview
</td>
</tr>
<tr>
<td class="alt1">
$preview
</td>
</tr>
</table>
</if>
<br />
<form name="vbform" action="newthread.php" method="post" condition="!is_browser('webtv')" >
<input type="hidden" value="$formname" name="do" />
<input type="hidden" value="submit" name="action" />
<input type="hidden" name="posthash" value="$posthash" />
<input type="hidden" name="poststarttime" value="$poststarttime" />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="875" align="center">
<tr>
<td class="tcat" colspan="2" width="966">
$vboptions[bbtitle] - $formtitle
</td>
</tr>
<tr>
<td class="panelsurround" align="center" colspan="2" width="966">
<table class="panel" cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="95%">
<tr>
<td align="$stylevar[left]">
<p align="center">$formpurpose
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="alt1" width="438">
<b>$normalquestion1</b>
</td>
<td class="alt1" width="437">
<input type="text" size="49" value="$normalanswer1" name="normalanswer1" />
</td>
</tr>
<tr>
<td class="alt2" valign="middle" width="371">
<b>$question1</b>:<br />
$explain1</td>
<td class="alt2" valign="middle" width="589">
<input type="text" size="30" value="$answer1" name="answer1" /></td>
</tr>
<tr>
<td class="alt1" valign="middle" width="371">
<b>$question2</b>:<br />
$explain2</td>
<td class="alt1" valign="middle" width="589">
<input type="text" size="30" value="$answer2" name="answer2" /></td>
</tr>
<tr>
<td class="alt1" valign="middle" width="371">
<b>$dropdownquestion1</b>:
</td>
<td class="alt1" valign="middle" width="589">
<select name="dropdownanswer1">
<option value="$dropdownchoice1a" <if condition="$dropdownchoice1a == $dropdownanswer1">selected="selected"</if>>$dropdownchoice1a</option>
<option value="$dropdownchoice1b" <if condition="$dropdownchoice1b == $dropdownanswer1">selected="selected"</if>>$dropdownchoice1b</option>
<option value="$dropdownchoice1c" <if condition="$dropdownchoice1c == $dropdownanswer1">selected="selected"</if>>$dropdownchoice1c</option>
</select></td>
</tr>
<tr>
<td class="alt2" valign="middle" colspan="2" width="90">
<div align="center">
<b>$vbtextquestion</b><br />
$vbtextexplain
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<br>
$messagearea
</td>
</tr>
</table>
</div>
</td>
</tr>
<if condition="$attachmentoption">
<tr>
<td class="alt1" colspan="2" align="center" width="875">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">$attachmentoption</div>
</td>
</tr>
</if>
<tr>
<td valign="top" colspan="2" width="875">
<p align="center">
<input type="submit" value="Submit" name="submit" style="font-family: Verdana; font-size: 10pt" class="button" />
<input type="submit" value="Preview" name="submit" style="font-family: Verdana; font-size: 10pt" class="button" />
<input type="reset" value="Reset" name="reset" style="font-family: Verdana; font-size: 10pt" class="button" />
</p></td></tr>
</table>
</form>
$footer
</body>
</html>
|