Navigation

This is a discussion on "Navigation" within the Starting Out section. This forum, and the thread "Navigation are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Starting Out

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 14th, 2007, 13:05
Junior Member
Join Date: Sep 2007
Location: somerset
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
Navigation

I want my navigation, to be on the right hand side, is there a nice 'clean' way of achieving this?
Thanks
Frankiiei
Reply With Quote

  #2 (permalink)  
Old Sep 14th, 2007, 13:07
1840dsgn's Avatar
SuperMember

SuperMember
Join Date: Jun 2007
Location: Canterbury
Age: 19
Posts: 717
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

float: right;

put that in your css around the div that your navigation is within.
Reply With Quote
  #3 (permalink)  
Old Sep 14th, 2007, 13:11
Junior Member
Join Date: Sep 2007
Location: somerset
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

sorry to sound dumb, but 'around the div' lol sorry!
and thank you frankiiei
Reply With Quote
  #4 (permalink)  
Old Sep 14th, 2007, 13:17
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

Well ... continuing from what I posted in your previous thread,

I would create another div for your navigation

Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US">

<head>
    <title>Some title</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link rel="stylesheet" type="text/css" media="screen" href="styles.css">    
    
</head>

<body>

<div id="branding">
    <h1>Seo Genius</h1>
</div>

<div id="navigation">
    menu here
</div>

<div id="content">
    <h2> This website provides a guide to the basics of SEO.</h2>

    <p>SEO means Search engine optimasation, basically SEO is used to rank you page higher on search engines, such as 'Google' and 'Yahoo'.
Some websites use a SEO company, and some people do the SEO themselves, which ever you chooses, it is important to get it right.</p>

    .....

</div> 

</body>
</html>
And just put this in your css
Code: Select all
#navigation {
        text-align: left;
    }
Reply With Quote
  #5 (permalink)  
Old Sep 14th, 2007, 13:21
Junior Member
Join Date: Sep 2007
Location: somerset
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

When you say...
<div id="navigation">
menu here
</div>
What do i put for 'menu here' ?
Reply With Quote
  #6 (permalink)  
Old Sep 14th, 2007, 13:22
Junior Member
Join Date: Sep 2007
Location: somerset
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

oh and they end up next to each other rather than under neath each other
Reply With Quote
  #7 (permalink)  
Old Sep 14th, 2007, 13:22
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

Your menu!?

Did you copy the CSS I posted?

Which should be a list for all intended purposes.

See CSS Design: Taming Lists
Reply With Quote
  #8 (permalink)  
Old Sep 14th, 2007, 13:30
Junior Member
Join Date: Sep 2007
Location: somerset
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

yes sorry it is working fine now. Thank you x
Reply With Quote
  #9 (permalink)  
Old Sep 14th, 2007, 14:22
Junior Member
Join Date: Sep 2007
Location: somerset
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

Ive made my navigation but two of the links dont connect, they are all exactly the same so i cant understand this. Any ideas people?
Thanks guys
Reply With Quote
  #10 (permalink)  
Old Sep 14th, 2007, 14:27
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

Give us a link!
Reply With Quote
  #11 (permalink)  
Old Sep 14th, 2007, 14:32
Junior Member
Join Date: Sep 2007
Location: somerset
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

if you go on my webpage seogenius.co.uk, the two links;
Critical Componants of Seo
Seo Vs Search Engines
Reply With Quote
  #12 (permalink)  
Old Sep 14th, 2007, 14:34
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

Make sure the pages exist. You have the right file name.
Reply With Quote
  #13 (permalink)  
Old Sep 14th, 2007, 14:42
Junior Member
Join Date: Sep 2007
Location: somerset
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

yeah the pages are there and they are all spelt correctly, i really and stuck on this one, it doesnt make sence ive done it all right (as far as i can work out) its probly something so easy and obvious
Reply With Quote
  #14 (permalink)  
Old Sep 14th, 2007, 14:56
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

Well ... it's not a problem with your code. Check the filenames again ... that's where your problem is.

http://validator.w3.org/checklink?ch...enius.co.uk%2F
Reply With Quote
  #15 (permalink)  
Old Sep 14th, 2007, 14:58
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

Also ... if you're using an XHTML Doctype, make sure you understand what it implicates

4. Differences with HTML 4

and use a strict doctype ... that's why I put HTML Strict in my example in your previous thread.
Reply With Quote
  #16 (permalink)  
Old Sep 14th, 2007, 15:03
Junior Member
Join Date: Sep 2007
Location: somerset
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Navigation

ok will do thank you x
Reply With Quote
Reply

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 On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Navigation inkz Web Page Design 2 Apr 22nd, 2008 15:33
CSS Navigation Help penguin Starting Out 3 Mar 15th, 2008 13:43
Navigation help elephantinc Flash & Multimedia Forum 9 Feb 13th, 2008 22:46
CSS Navigation Help! crackafaza Web Page Design 3 Jan 21st, 2008 15:56
CSS navigation AdRock Web Page Design 1 Jul 15th, 2006 10:56


All times are GMT. The time now is 21:06.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43