Home News Forum Articles
  Welcome back Join CF
You are here You are here: Home | Forum | Webdesign links help.


You are currently viewing our boards as a guest which gives you limited access to view most of the discussions, articles and other free features. By joining our Virgin Media community you will have full access to all discussions, be able to view and post threads, communicate privately with other members (PM), respond to polls, upload your own images/photos, and access many other special features. Registration is fast, simple and absolutely free so please join our community today.


Welcome to Cable Forum
Go Back   Cable Forum > Computers & IT > Internet Discussion

Webdesign links help.
Reply
 
Thread Tools
Old 06-03-2008, 17:34   #16
while(!naked){--clothes}
 
ikthius's Avatar
 
Join Date: Mar 2004
Location: Glasgow, Scotland
Services: anything for a new job
Posts: 4,002
ikthius is cast in bronzeikthius is cast in bronzeikthius is cast in bronzeikthius is cast in bronze
ikthius is cast in bronzeikthius is cast in bronzeikthius is cast in bronze
Re: Webdesign links help.

in your navigation file, the target is wrong, your using parent, when you should tell it where to go, so use what you used as the name as the content frame

Code:
td width="162"><a href="index.html" target="_parent" class="style1">Home</a></td>
as
Code:
td width="162"><a href="index.html" target="mainFrame" class="style1">Home</a></td>
ik

edit: you effectively just telling the target frame to change to show the page you want. so just change your navigation file target

NOTE: I would change the code above to show:
Code:
<a href="content.html" target="mainFrame" class="style1">Home</a>
that way you can always use the home link to just change the content frame to show your home page, other wise you will try and make the content frame have your full index page so it may nest your index.html inside your index.html
__________________
Let me guess, you picked out yet another colorful box with a crank that I'm expected to turn and turn until OOP! big shock, a jack pops out and you laugh and the kids laugh and the dog laughs and I die a little inside.

Last edited by ikthius; 06-03-2008 at 17:51.
ikthius is offline   Reply With Quote
Old 06-03-2008, 17:41   #17
Cable Forum Team
 
Graham M's Avatar
 
Join Date: Jul 2003
Location: Poole, Dorset
Age: 23
Services: Sky+ V-Box VM 10MBit
Posts: 9,554
Graham M has a nice shiny starGraham M has a nice shiny starGraham M has a nice shiny starGraham M has a nice shiny star
Graham M has a nice shiny star
Send a message via ICQ to Graham M
Re: Webdesign links help.

Also, you have neglected to name the frames as far as I can see so even if you put the correct target frames they won't know where to go

Edit, my bad, I didn't see the name on your display frame
__________________
Used to be Zeph - I'm still me though
Peter: Oh my god, Brian, there's a message in my Alphabits. It says, 'Oooooo.'
Brian: Peter, those are Cheerios.
www.elitehealthdistribution.co.uk - www.loonyasylum.net
Graham M is offline   Reply With Quote
Old 06-03-2008, 19:04   #18
cf.geek
 
webcrawler2050's Avatar
 
Join Date: Feb 2008
Location: Gloucester
Services: V+ VM 20MB VM Fixed Line VM Mobiles
Posts: 581
webcrawler2050 is a splendid one to beholdwebcrawler2050 is a splendid one to beholdwebcrawler2050 is a splendid one to beholdwebcrawler2050 is a splendid one to beholdwebcrawler2050 is a splendid one to beholdwebcrawler2050 is a splendid one to beholdwebcrawler2050 is a splendid one to beholdwebcrawler2050 is a splendid one to beholdwebcrawler2050 is a splendid one to behold
Send a message via MSN to webcrawler2050 Send a message via Skype™ to webcrawler2050
Re: Webdesign links help.

My Advice... don't use frames!!! They are crappy

Maybe this could help instead??

PHP Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- 
TemplateBeginEditable name="doctitle" -->
<
title>Untitled Document</title>
<!-- 
TemplateEndEditable -->
<!-- 
TemplateBeginEditable name="head" --><!-- TemplateEndEditable -->
<
style type="text/css"
<!-- 
body  {
    
font100VerdanaArialHelveticasans-serif;
    
background#666666;
    
margin0/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    
padding0;
    
text-aligncenter/* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    
color#000000;
}
.
twoColFixLt #container { 
    
width780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
    
background#FFFFFF;
    
margin0 auto/* the auto margins (in conjunction with a width) center the page */
    
border1px solid #000000;
    
text-alignleft/* this overrides the text-align: center on the body element. */
}
.
twoColFixLt #sidebar1 {
    
floatleft/* since this element is floated, a width must be given */
    
width200px/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    
background#EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    
padding15px 10px 15px 20px;
}
.
twoColFixLt #mainContent { 
    
margin0 0 0 250px/* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
    
padding0 20px 20px/* remember that padding is the space inside the div box and margin is the space outside the div box */

.
fltrt /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    
floatright;
    
margin-left8px;
}
.
fltlft /* this class can be used to float an element left in your page */
    
floatleft;
    
margin-right8px;
}
.
clearfloat /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    
clear:both;
    
height:0;
    
font-size1px;
    
line-height0px;
}
.
style1 {color#FFFFCC}
--> 
</
style><!--[if IE 5]>
<
style type="text/css"
/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixLt #sidebar1 { width: 230px; }
</style>
<![endif]--><!--[if 
IE]>
<
style type="text/css"
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixLt #sidebar1 { padding-top: 30px; }
.twoColFixLt #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]--></
head>

<
body class="twoColFixLt">

<
div id="container">
  <
div id="sidebar1">
    <
table width="200" border="0">
      <
tr>
        <
th width="28" scope="row"><div align="left"><img src="images/flowerbullet.gif" width="34" height="30" /></div></th>
        <
td width="162"><a href="index.html" target="_parent" class="style1">Home</a></td>
      </
tr>
      <
tr>
        <
th scope="row"><div align="left"><img src="images/flowerbullet.gif" width="34" height="30" /></div></th>
        <
td><a href="about.html" target="_parent" class="style1">About Us</a> </td>
      </
tr>
      <
tr>
        <
th scope="row"><div align="left"><img src="images/flowerbullet.gif" width="34" height="30" /></div></th>
        <
td><a href="contact.html" target="_parent" class="style1">Contact Us</a> </td>
      </
tr>
      <
tr>
        <
th scope="row"><div align="left"><img src="images/flowerbullet.gif" width="34" height="30" /></div></th>
        <
td><a href="http://britishclubdivers.co.uk/flowergallery/main.php" target="_blank" class="style1">Gallery</a></td>
      </
tr>
    </
table>
    <
h3>&nbsp;</h3>
  <!-- 
end #sidebar1 --></div>
  
<div id="mainContent">
    <
h1Test content here</h1>
    <!-- 
end #mainContent --></div>
    
<!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --><br class="clearfloat" />
<!-- end #container --></div>
</body>
</
html
__________________
Kind Regards
Richard Copestake
Bionic Internet Ltd - UK Web Hosting - UK Reseller Hosting - UK Web Directory
Company No: 6545963
webcrawler2050 is offline   Reply With Quote
Old 07-03-2008, 08:45   #19
NINJA
 
grandmaster's Avatar
 
Join Date: May 2005
Location: Nr Manchester
Age: 30
Posts: 887
grandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of society
Re: Webdesign links help.

Do you know what?
You people are fantastic, I really appreciate your help.

Ik , Thanks for the screenshot, I think its because my pc in a 17" widescreen so It looks ok on mine, I think I may start again from scratch.

Webcrawler, Thanks, I'll look at css but for some reason I could never get the hang of it lol..

Thanks for all your replies!!!

It won't let me add to your rep,sorry.
I have to spread some love around first!!
Ryan
__________________
Scuba Diver?
Our new site for scuba divers.
http://www.britishclubdivers.co.uk
2nd Dan Black belt in W.J.J.F Jujitsu.
grandmaster is offline   Reply With Quote
Old 07-03-2008, 09:00   #20
Cable Forum Team
 
Graham M's Avatar
 
Join Date: Jul 2003
Location: Poole, Dorset
Age: 23
Services: Sky+ V-Box VM 10MBit
Posts: 9,554
Graham M has a nice shiny starGraham M has a nice shiny starGraham M has a nice shiny starGraham M has a nice shiny star
Graham M has a nice shiny star
Send a message via ICQ to Graham M
Re: Webdesign links help.

No need to use CSS for the majority of your site, it IS better, but you can get away with a simple Table based layout, just set the border to 0
__________________
Used to be Zeph - I'm still me though
Peter: Oh my god, Brian, there's a message in my Alphabits. It says, 'Oooooo.'
Brian: Peter, those are Cheerios.
www.elitehealthdistribution.co.uk - www.loonyasylum.net
Graham M is offline   Reply With Quote
Old 07-03-2008, 14:38   #21
while(!naked){--clothes}
 
ikthius's Avatar
 
Join Date: Mar 2004
Location: Glasgow, Scotland
Services: anything for a new job
Posts: 4,002
ikthius is cast in bronzeikthius is cast in bronzeikthius is cast in bronzeikthius is cast in bronze
ikthius is cast in bronzeikthius is cast in bronzeikthius is cast in bronze
Re: Webdesign links help.

mines is a 17" monitor on a 1034x768 res

does it work yet?

ik
__________________
Let me guess, you picked out yet another colorful box with a crank that I'm expected to turn and turn until OOP! big shock, a jack pops out and you laugh and the kids laugh and the dog laughs and I die a little inside.
ikthius is offline   Reply With Quote
Old 07-03-2008, 15:09   #22
NINJA
 
grandmaster's Avatar
 
Join Date: May 2005
Location: Nr Manchester
Age: 30
Posts: 887
grandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of societygrandmaster is a pillar of society
Re: Webdesign links help.

I can't update my site from work (and I forgot my phone so can't GPRS either)
I'll have to sort it tonight after Ju-jitsu.

Thanks
Ryan
__________________
Scuba Diver?
Our new site for scuba divers.
http://www.britishclubdivers.co.uk
2nd Dan Black belt in W.J.J.F Jujitsu.
grandmaster is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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

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


All times are GMT +1. The time now is 15:30.


Links
Google
 
Web www.cableforum.co.uk


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0
Copyright © 2003 - 2008, Cable Forum.
(s204569790.onlinehome.info)