BrianOg
Posts: 5
|
| Posted: 05/02/2006, 11:39 AM |
|
Am a Newbie to CSS and ASP.
Have followed your instructions and created a Menu based on a mySQL database. It works OK but it is vertical, not horizontal.
Where have I gone wrong?
When I get it right, how can I arrange for linked page data to be displayed BELOW the menu (rather like a framed HTML page)?
HTML coding is:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<title>NewPage1</title>
<meta content="CodeCharge Studio 3.0.3.1" name="GENERATOR">
<link rel="stylesheet" type="text/css" href="Styles/Style3/Style.css">
</head>
<body>
<!-- BEGIN Directory tblmenu -->
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td valign="top">
<table class="Header" cellspacing="0" cellpadding="0" border="0">
<tr>
<td class="HeaderLeft"><img src="Styles/Style3/Images/Spacer.gif" border="0"></td>
<th>tblmenu </th>
<td class="HeaderRight"><img src="Styles/Style3/Images/Spacer.gif" border="0"></td>
</tr>
</table>
<table class="Grid" cellspacing="0" cellpadding="0">
<tr class="Row">
<td valign="top">
<!-- BEGIN Category --><b><a href="{CategoryLink_Src}">{CategoryLink}</a></b><br>
<!-- BEGIN Subcategory --> <a href="{SubcategoryLink_Src}">{SubcategoryLink}</a> <!-- END Subcategory -->
<!-- BEGIN SubcategorySeparator --><br>
<!-- END SubcategorySeparator -->
<!-- BEGIN SubcategoriesTail --> <a href="{SubcategoriesTailLink_Src}">More...</a> <!-- END SubcategoriesTail --><!-- END Category -->
<!-- BEGIN CategorySeparator -->
<hr><!-- END CategorySeparator -->
<!-- BEGIN ColumnSeparator --></td>
<td valign="top"><!-- END ColumnSeparator -->
<!-- BEGIN NoCategories -->No categories found <!-- END NoCategories --></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- END Directory tblmenu --><br>
</body>
</html>
|
 |
 |
|