Forum Moderators: open
<SNIP>
[edited by: BlobFisk at 9:53 am (utc) on April 6, 2005]
[edit reason] No URLs please! See TOS [webmasterworld.com] [/edit]
This sounds like a frames issue rather than a table issue. If you have a 2 column frame layout with your site links on the left hand column and your content on the right hand colum, you need to tell the links in the left frame that they need to open in the content frame. We achieve this using the target attribute.
In your frameset page where you define your frames you should have code like this:
<frame src="left.html" name="leftframe">
<frame src="content.html" name="contentframe">
It is the names on the frames that we use. So, in your left frame on your links, you should use a target:
<a href="page.html" title="Page Title" target="contentframe">
HTH
Other target attributes include:
target=new_window .. Loads in a new window
target=_top ........ Overrides all frames
target=_self ....... Loads in the same frame
target=_blank ...... Also loads in a new window cmatcme
In order to apply the attributes you need to place them in the a tag like so:
<a href="example.asp" target=new_window> This will load example.asp in a new window.
For more info google html targets [google.com] or use your favourite search engine.
cmatcme
PS: I'm self taught too!
You all are genius' I will definitely be mentioning this site to other people inthe league.. they always need html help lol. Again thank you so much for the help