Position Table At Specific Location

Hi,<br />
I have a question regarding table. So far I managed to position my table with left, center, and right alignment. Is it possible to position my table to a specific location, say in between center alignment and right alignment?<br />
I have a one column table and the source is attached below. <br />
<br />
Thanks for your attention, I appreciate it!<br />
<br />
-Jim<br />
<br />
<div id="ourServicesMenuContainer"> <br />
<div id="ourServicesMenuContent" class="menu"><br />
<table border=0 cellspacing=0 cellpadding=0 width=140><br />
<tr><td><a href=http://www.webdeveloper.com/forum/archive/index.php/"begWaterSki.html" ></a></td></tr><br />
<tr><td><a href=http://www.webdeveloper.com/forum/archive/index.php/"slalom.html"></a></td></tr><br />
<tr><td><a href=http://www.webdeveloper.com/forum/archive/index.php/"wake.html"></a></td></tr><br />
<tr><td><a href=http://www.webdeveloper.com/forum/archive/index.php/"bareFooting.html"></a></td></tr><br />
<tr><td><a href=http://www.webdeveloper.com/forum/archive/index.php/"hydroFoiling.html"></a></td></tr><br />
</table><br />
</div><br />
</div><!--content-->Well, I'd like to know why you're using tables for layout- that doesn't look like tabular data to me. Have you heard of CSS? <http://www.w3schools.com/css/><!--content-->Hi,<br />
Thanks for your reply. The source I provided is actually called by Javascript. It's a drop down menu. You can view the drop down menu at <!-- w --><a class="postlink" href="http://www.waterski-school.com">www.waterski-school.com</a><!-- w -->. />
<br />
The html code contains the css code (attached below) but I am not familiar with css.<br />
<br />
Please shade some lights on how to position the menu say without javascript because it gives me error.<br />
<br />
Thanks...Jim<br />
<br />
<style type="text/css"><br />
<br />
body {<br />
font-size:11px;<br />
font-family:arial, sans-serif;<br />
color:#444444;<br />
}<br />
#menubar {<br />
position:relative;<br />
width:450px;<br />
}<br />
#menubar a {<br />
color:#AD5800;<br />
letter-spacing:1px;<br />
text-decoration:none;<br />
}<br />
#menubar a.active {<br />
border-bottom-color:#CCC599;<br />
border-right-color:#CCC599;<br />
border-left-color:#FFFFFF;<br />
border-top-color:#FFFFFF;<br />
}<br />
.menu .options {<br />
margin-right:1px;<br />
margin-bottom:1px;<br />
border:1px solid #AD5800;<br />
background-color:#F9F1C8;<br />
}<br />
.menu a {<br />
color:#AD5800;<br />
display:block;<br />
text-decoration:none;<br />
background-color:transparent;<br />
}<br />
.menu a:hover {<br />
background-color:#AD5800;<br />
color:#FAF7E1;<br />
}<br />
<br />
#about {<br />
position:absolute;<br />
left:5px;<br />
top:200px;<br />
}<br />
</style><!--content-->
 
Back
Top