new menu

hi guys,
would be nice to have a new menu aplication with pictures instead of writing

like this
http://examples.codecharge.com/RegistrationForm/Default.php

Re: new menu

Do this yourself with HTML in the form. They just created a table:


<table border="0" cellpadding="0" cellspacing="0">
 <tr>
  <td><a href="Default.php"><img border="0" src="images/logo.gif"></a></td> 
  <td><a href="Default.php"><img border="0" src="images/home.gif"></a></td> 
  <td><a href="Registration.php"><img border="0" src="images/reg.gif"></a></td> 
  <td><a href="MyDetails.php"><img border="0" src="images/mydetails.gif"></a></td> 
 </tr>

</table>

Regards,
Scott.

HTML form? Is there some way to edit the menu HTML? I can’t seem to find it. Letme know, thanks!

[QUOTE=ScottMartin;2354]Do this yourself with HTML in the form. They just created a table:


<table border="0" cellpadding="0" cellspacing="0">
 <tr>
  <td><a href="Default.php"><img border="0" src="images/logo.gif"></a></td> 
  <td><a href="Default.php"><img border="0" src="images/home.gif"></a></td> 
  <td><a href="Registration.php"><img border="0" src="images/reg.gif"></a></td> 
  <td><a href="MyDetails.php"><img border="0" src="images/mydetails.gif"></a></td> 
 </tr>

</table>

Regards,
Scott.[/QUOTE]