Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Old 11-15-2006, 10:29 AM question about links
Junior Talker

Posts: 4
Trades: 0
I an new in these forum and i am building web site i would like to have form for my site: Menu that will be a table and have links that will open in the same window so the menu will stay always in the page and there will be the link in the center. PLEASE TELL HOW TO DO THAT!!! I don't want to use a frames THANKS
Dark WaRRioR is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-15-2006, 10:47 AM Re: question about links
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
If you don't want to use frames (and you shouldn't), then you're going to have to use a scripting solution to do what you want.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 11-15-2006, 05:10 PM Re: question about links
dansgalaxy's Avatar
Defies a Status

Posts: 6,521
Name: Dan
Location: Swindon
Trades: 0
Do you know any examples of what you mean? ie other sites with similar
dansgalaxy is offline
Reply With Quote
View Public Profile Visit dansgalaxy's homepage!
 
Old 11-16-2006, 09:34 AM Re: question about links
Junior Talker

Posts: 4
Trades: 0
for EXAMPLE http://www.w3schools.com/ this site has menu that changing BUT always stays on the screen the links are open in the same window. So i want something like this this form of site
Dark WaRRioR is offline
Reply With Quote
View Public Profile
 
Old 11-16-2006, 11:44 AM Re: question about links
blackhawkpowers's Avatar
Ultra Talker

Posts: 313
Name: Dustin
Location: GA
Trades: 0
for what you're wanting to do all you need to do is use the same menu bar on each page. (If I understand correctly) this is a very basic way to do it if you're new to html if you would prefer to do it with CSS you could do it that way too.

HTML Code:
<html>
<body>
<table>
  <tr>
     <td bgcolor="blue"> 
        <a href="http://www.google.com"> Google </a> <br>
        <a href="http://www.yahoo.com"> Yahoo </a> <br>
        <a href="http://www.dogpile.com"> dogpile </a> <br>
      </td>
      <td> 
         here is where you put the body of the webpage 
      </td>
    </tr>
</table>
</body>
</html>
like I said though this method is going to be really kinda sloppy and I doubt you'll be happy with the result but if you really want a navigation bar you should tackle a bit of CSS and it will help out alot.

Last edited by blackhawkpowers; 11-16-2006 at 11:50 AM..
blackhawkpowers is offline
Reply With Quote
View Public Profile Visit blackhawkpowers's homepage!
 
Old 11-16-2006, 12:47 PM Re: question about links
Junior Talker

Posts: 4
Trades: 0
What i am trying to say is that i want is to build a navigation menu like if i have frames but without them
Dark WaRRioR is offline
Reply With Quote
View Public Profile
 
Old 11-16-2006, 01:03 PM Re: question about links
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Why ? What is the reasoning behind it ?
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 11-16-2006, 01:19 PM Re: question about links
Junior Talker

Posts: 4
Trades: 0
the reason is that with this kind of structure it will be much easier to watch the site
Dark WaRRioR is offline
Reply With Quote
View Public Profile
 
Old 11-16-2006, 04:18 PM Re: question about links
blackhawkpowers's Avatar
Ultra Talker

Posts: 313
Name: Dustin
Location: GA
Trades: 0
HTML Code:
.navbar {
  width: 15%;
  bgcolor: blue;
  left: 0px;
}
 
.content {
  width: 85%;
  margin-left: 15%;
  padding: .5em;
}
 
 
<div class="navbar">
 <a href="./aboutme.htm"> About Me </a><br>
 <a href="./home.htm"> Home </a><br>
etc etc...
</div>
 
<div class="content">
  Everything for the right area here
</div>
 
blackhawkpowers is offline
Reply With Quote
View Public Profile Visit blackhawkpowers's homepage!
 
Reply     « Reply to question about links
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 1.43567 seconds with 12 queries