I want the buttons in the center of the table to look link the buttons I have displayed at the bottom left of the page. The buttons in the center table have a different font color displaying and it has rollover states. It should look like the buttons displaying below them; with no-rollover states and have a red txt font displaying not blue?
http://<a href="http://www.michaelmoskva.com/xcart/my_account.php" target="_blank">http://www.michaelmoskv...ccount.php</a>
I adjusted the location of <font> tag but that didnt help any; and i also removed the <span> tags but that didn't help any either?
Here is my css button code:
Code:
}
.new_button_gr {
COLOR: #ff3300; FONT-WEIGHT: bold; FONT-SIZE: 10px;
BACKGROUND-COLOR: #ffffff;
border-color:#CCCCCC; border-style:solid; border-width:1px; height: 1.3 em; padding: 3.5;
}
code for button located in center table:
Code:
<td><table border="0" width="100%" cellpadding="0" cellspacing="1">
<tr>
<td class=NavDialogBox_ width="50%" valign=top>
[img]{$ImagesDir}/spacer.gif[/img]<font class=SubHeader2>{$login}</font>
[img]{$ImagesDir}/spacer.gif[/img]<font class=SubHeader2>{$lng.txt_email_preference}{$lng.txt_email_confirmations}</font>
[img]{$ImagesDir}/spacer.gif[/img] <span>
{$lng.lbl_modify_profile}</span>
[img]{$ImagesDir}/spacer.gif[/img] <span>
{$lng.lbl_delete_profile}</span>
<table border="0" width="100%" cellpadding="0" cellspacing="1" align="center" class=NavDialogBox_>
</table></td>
code for the buttons that are displaying correctly
Code:
<table border="0" cellpadding="0" cellspacing="0">
<tr height=25>
<td onClick="javascript:self.location='register.php?mode=update'" class=new_button_gr style='cursor:pointer' align=center>{$lng.lbl_modify_profile}</td><td width=4></td>
<td onClick="javascript:self.location='register.php?mode=delete'" class=new_button_gr style='cursor:pointer' align=center>{$lng.lbl_delete_profile}</td><td width=4></td>
<td onClick="javascript:self.location='orders.php'" class=new_button_gr style='cursor:pointer' align=center>{$lng.lbl_orders_history}</td><td width=4></td>
</tr>