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

Posts: 4
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
 
When You Register, These Ads Go Away!
Old 11-15-2006, 11:47 AM Re: question about links
LadynRed's Avatar
Super Moderator

Posts: 6,743
Location: Tennessee
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 !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
LadynRed is offline
Reply With Quote
View Public Profile
 
Old 11-15-2006, 06:10 PM Re: question about links
dansgalaxy's Avatar
Eat, Sleep, Code

Posts: 6,284
Name: Dan
Location: Swindon
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, 10:34 AM Re: question about links
Junior Talker

Posts: 4
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, 12:44 PM Re: question about links
blackhawkpowers's Avatar
Ultra Talker

Posts: 312
Name: Dustin
Location: GA
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 12:50 PM.
blackhawkpowers is offline
Reply With Quote
View Public Profile Visit blackhawkpowers's homepage!
 
Old 11-16-2006, 01:47 PM Re: question about links
Junior Talker

Posts: 4
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, 02:03 PM Re: question about links
LadynRed's Avatar
Super Moderator

Posts: 6,743
Location: Tennessee
Why ? What is the reasoning behind it ?
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
LadynRed is offline
Reply With Quote
View Public Profile
 
Old 11-16-2006, 02:19 PM Re: question about links
Junior Talker

Posts: 4
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, 05:18 PM Re: question about links
blackhawkpowers's Avatar
Ultra Talker

Posts: 312
Name: Dustin
Location: GA
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

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

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


Webmaster Resources Marketplace:
Software Development Company | Webhosting.UK.com | Text Link Brokers 


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

 


Page generated in 0.14232 seconds with 12 queries