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
Link Address In Frames Templates
Old 05-16-2007, 02:20 AM Link Address In Frames Templates
Junior Talker

Posts: 3
Name: Exodus
Trades: 0
Ok so i found this templat i really want to use, I can do all the graphic design as well as add new images and play with the code thats no prob, my issue is that it simply has all the button links on the side that go nowhere (i guess thats obvious) but when I create the new pages for the links what do i title them to make them show up in the correct place, whenever i simply try linking a page in Dreamweaver it just acts as if there is no frames? sorry if im a bit iggnorant I just need some help Ill post the code

<html>
<head>
<title>YOUR WEB PAGE TITLE GOES HERE</title>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<table class="Global" cellpadding="0" cellspacing="0" border="0">
<tr><td height="150" colspan="2" style="background: #ffffff; color: inherit;">
<!-- ============ Header section ============== -->
<table class="Header" style="height: 150px;" cellspacing="0" border="0"><tr>
<!-- ============ Logo ============== -->
<td style="background: url('temp-header-bg.jpg') no-repeat;" width="100%" align="left"><div style="display: table; margin-left: 20px; margin-top: 20px;">&nbsp;</div></td>
</tr></table>
</td><td rowspan="3" width="10" style="background: url('faderight-bg.gif') #808080;">&nbsp;</td></tr>
<!-- ============ COLUMNS SECTION ============== -->
<!-- ============ Left Column ============== -->
<tr><td class="Left" width="170" align="center">
<!-- ============ Menu ============== -->
<table class="BoxStyle" cellspacing="0" style="width: 150px; margin-top: 15px;" border="0">
<tr><td>
<!-- ============ BEGIN 3D BUTTON MENU ============== -->
<center><table border="0" cellspacing="5" cellpadding="0" style="width: 100%;">
<tr><td class="MenuOff" onmouseover="this.className='MenuOn';" onmouseout="this.className='MenuOff';" onclick="window.location.href = '#';" onmousedown="this.className='MenuClick';">&gt;&gt; &nbsp;&nbsp; <a href="#">Home</a></td></tr>
<tr><td class="MenuOff" onmouseover="this.className='MenuOn';" onmouseout="this.className='MenuOff';" onclick="window.location.href = '#';" onmousedown="this.className='MenuClick';">&gt;&gt; &nbsp;&nbsp; <a href="#">Products</a></td></tr>
<tr><td class="MenuOff" onmouseover="this.className='MenuOn';" onmouseout="this.className='MenuOff';" onclick="window.location.href = '#';" onmousedown="this.className='MenuClick';">&gt;&gt; &nbsp;&nbsp; <a href="#">Downloads</a></td></tr>
<tr><td class="MenuOff" onmouseover="this.className='MenuOn';" onmouseout="this.className='MenuOff';" onclick="window.location.href = '#';" onmousedown="this.className='MenuClick';">&gt;&gt; &nbsp;&nbsp; <a href="#">Support</a></td></tr>
<tr><td class="MenuOff" onmouseover="this.className='MenuOn';" onmouseout="this.className='MenuOff';" onclick="window.location.href = '#';" onmousedown="this.className='MenuClick';">&gt;&gt; &nbsp;&nbsp; <a href="#">Forum</a></td></tr>
<tr><td class="MenuOff" onmouseover="this.className='MenuOn';" onmouseout="this.className='MenuOff';" onclick="window.location.href = '#';" onmousedown="this.className='MenuClick';">&gt;&gt; &nbsp;&nbsp; <a href="#">Links</a></td></tr>
<tr><td class="MenuOff" onmouseover="this.className='MenuOn';" onmouseout="this.className='MenuOff';" onclick="window.location.href = '#';" onmousedown="this.className='MenuClick';">&gt;&gt; &nbsp;&nbsp; <a href="#">Contact</a></td></tr>
</table></center>
<!-- ============ END 3D BUTTON MENU ============== -->
</td></tr></table>
</td>
<!-- ============ Content Column ============== -->
<td class="Content Padded">
<!-- ============ Page Heading ============== -->
<h1 class="HeadingStyle">Introduction</h1>
<div style="width: 95%;">
</div>
</td></tr>
<tr><td class="Left" width="170">&nbsp;</td><td class="Content" style="height: 25px; vertical-align: middle; text-align: center;">
<!-- ============ Copyright notice ============== -->
<p>Copyright &copy; Your name or company name &nbsp;&nbsp;&nbsp;

</html>
Exodus is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 05-16-2007, 03:26 AM Re: Link Address In Frames Templates
cbeaudin's Avatar
Extreme Talker

Posts: 158
Name: cbeaudin
Location: Proud to be Canadian
Trades: 1
The code "<a href="#">" links to nothing, so you have to change the links to what you named the files (ie. <a href="contactme.html">)

If your using frames you may also have to specify a target (ie. <a href="contactme.html" target="rightframe">).

The target depends on what the frames are called.

It doesnt seem to appear that you are using frames though... Did any other html files come with this template? Do you mean columns on the same page?
__________________
- cbeaudin

Last edited by cbeaudin; 05-16-2007 at 03:28 AM..
cbeaudin is offline
Reply With Quote
View Public Profile
 
Old 05-16-2007, 03:38 AM Re: Link Address In Frames Templates
Junior Talker

Posts: 3
Name: Exodus
Trades: 0
yeah its columns, so nm that won't work Ideally Im looking into learning more into designing though Not sure exactly what I'm looking for I would like to learn whatever that page is---> http://modthatcube.pxn-os.com/main.htmthough Im not sure if thats java or not if so anybody know some resources i can start out with learning the basics of making webpages like that?
thanx

Last edited by Exodus; 05-16-2007 at 03:48 AM..
Exodus is offline
Reply With Quote
View Public Profile
 
Old 05-16-2007, 03:49 AM Re: Link Address In Frames Templates
cbeaudin's Avatar
Extreme Talker

Posts: 158
Name: cbeaudin
Location: Proud to be Canadian
Trades: 1
For columns, you cannot reload a single column by its self, you must reload the whole page. So what you would do is change all the links to what you are going to call the files (ie. <a href="home.html">Home</a>) and so on for all the links.

Then you make copies of the same file and name them according to the links and change the information in the content column for each page.

Give me a few minutes and ill download the template, maybe ill be able to give you better instructions.

UPDATE: Your missing a section from the template, but besides the point, all your links will be in the "BEGIN 3D BUTTON MENU SECTION" and near the bottom you have the page content on the right between the DIV tags...

i.e.
<div style="width: 95%;">
YOUR RIGHT HAND SIDE PAGE CONTENT GOES HERE
</div>

So once you've changed the links, you just make copies of the same file and name them "contactme.html" or whatever you set the links to and change the right hand content to whatever should be there.

I hope that makes sense, feel free to ask questions
__________________
- cbeaudin

Last edited by cbeaudin; 05-16-2007 at 04:00 AM..
cbeaudin is offline
Reply With Quote
View Public Profile
 
Old 05-16-2007, 04:30 AM Re: Link Address In Frames Templates
cbeaudin's Avatar
Extreme Talker

Posts: 158
Name: cbeaudin
Location: Proud to be Canadian
Trades: 1
Tutorials found here:
http://www.w3schools.com/
__________________
- cbeaudin
cbeaudin is offline
Reply With Quote
View Public Profile
 
Old 05-16-2007, 05:10 AM Re: Link Address In Frames Templates
HighVoltage123's Avatar
Ultra Talker

Posts: 262
Trades: 0
I think it easier not to use frames at all
HighVoltage123 is offline
Reply With Quote
View Public Profile Visit HighVoltage123's homepage!
 
Old 05-17-2007, 04:54 AM Re: Link Address In Frames Templates
Junior Talker

Posts: 3
Name: Exodus
Trades: 0
yeah I know It's just I have a ton of content to put into this page but to hell with the whole Idea more frustrating than its worth for Now I really appreciate the help but I cracked open the old book of Flash and Actionscript touch up on that and I should be good to go again, its just been so long since Ive done any of this stuff I forgot all the languages I learned in my first couple years in college, guess thats what happens when you stop using them
Exodus is offline
Reply With Quote
View Public Profile
 
Old 05-17-2007, 11:22 AM Re: Link Address In Frames Templates
HighVoltage123's Avatar
Ultra Talker

Posts: 262
Trades: 0
Actionscript uh... I was doing something today and I got sick of it - a simple gallery with slideshow (the pictures are constantly scrolling) and thumbnails... when you click on a thumbnail the slideshow is rewinding and the picture appears - the slideshow stops... it doesn't seem hard but it turned out to be not that easy... but I did it (it took me 2 hours almost)
HighVoltage123 is offline
Reply With Quote
View Public Profile Visit HighVoltage123's homepage!
 
Reply     « Reply to Link Address In Frames Templates
 

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 0.28073 seconds with 12 queries