Taking from this site. I just want a seperate area or whatever for some kinda menu ya dig?
HTML Questions
HTML Questions
I have been trying to figure this out for weeks, but can't find a damn thing that explains it. I just need to know how to create a seprate area like the pictures is below, one that will not be affected by surronding words, text etc... How is this done?

Taking from this site. I just want a seperate area or whatever for some kinda menu ya dig?
Taking from this site. I just want a seperate area or whatever for some kinda menu ya dig?
http://www.w3schools.com/html/default.asp
tables then.
tables then.
Last edited by 4days on Wed Mar 30, 2005 12:05 am, edited 1 time in total.
Well, whenever I try and make a menu over to the left and then try to add an image or something over on the right. The image goes below the menu instead of over to the right...4days wrote:i don't get it? you just want to make sure there's empty space to the right of the text in the element? if that's what you want then add:
padding-right:25px;
to the style declaration for the element. obviously play around with the 25px bit, make it a percentage instead, that sort of thing.
So is the above what I should try?
forget css for now, my bad. have a look at:
http://www.echoecho.com/htmltables.htm
or:
http://www.w3schools.com/html/html_tables.asp
and see how you get on with that.
http://www.echoecho.com/htmltables.htm
or:
http://www.w3schools.com/html/html_tables.asp
and see how you get on with that.
4days wrote:forget css for now, my bad. have a look at:
http://www.echoecho.com/htmltables.htm
or:
http://www.w3schools.com/html/html_tables.asp
and see how you get on with that.
Yeah, I was getting a bit confused on your first post. I'll check out the links and see how many time I can crash my broswer tonight. :icon32: ty
The code below is how my screenshot above was created. Is there anything special I need to do to create that, or can I use this as a guide?
Code: Select all
<table border="0" cellpadding="0" cellspacing="3">
<tr>
<td width="137" class="content" valign="top"><br />
<a class="left" href="/default.asp" target="_top">
<img src="/images/homeicon.gif" border="0" alt="home" /></a>
<a class="left" href="/default.asp" target="_top">
<b>HOME</b></a>
<br /><br />
<b>HTML Basic</b><br />
<a class="left" target="_top" href="default.asp" >HTML HOME</a><br />
<a class="left" target="_top" href="html_www.asp" >HTML & WWW</a><br />
<a class="left" target="_top" href="html_intro.asp" >HTML Introduction</a><br />
<a class="left" target="_top" href="html_elements.asp" style='font-weight:bold;color:#000000;background-color:transparent;'>HTML Elements</a><br />
<a class="left" target="_top" href="html_primary.asp" >HTML Basic Tags</a><br />
<a class="left" target="_top" href="html_formatting.asp" >HTML Formatting</a><br />
<a class="left" target="_top" href="html_entities.asp" >HTML Entities</a><br />
<a class="left" target="_top" href="html_links.asp" >HTML Links</a><br />