Nav bar not showing

This is a discussion on "Nav bar not showing" within the Web Page Design section. This forum, and the thread "Nav bar not showing are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Jan 24th, 2008, 13:11
kaz kaz is offline
Up'n'Coming Member
Join Date: Feb 2005
Location: Accra
Age: 42
Posts: 54
Thanks: 0
Thanked 0 Times in 0 Posts
Nav bar not showing

I'm trying to create a nav bar to to the right of the main table but it 's not showing. Here is the css code: the code for the nav table is last on the style sheet
Code: Select all
body {
background-color : #87ceeb;}
.ictdnews-stayinformed {
font-family : Arial;
font-weight : bold;
font-size : x-large;
text-align:left;}

#maincontent{float:left;width:500px;background-color:#ffffff;border-right:2px solid #000000;border-left:2px solid #000000;border-top:2px solid #000000;
border-bottom:2px solid #000;
margin-right:15px;
padding-bottom:20px;}
#network{font-family:Arial;font-weight:bold;font-size:16px; text-transform:capitalize;text-align:justify;}
#learn{font-family:Arial;font-weight:bold;font-size:16px; text-transform:capitalize;text-align:justify;
#systems{font-family:Arial;font-weight:bold;font-size:16px; text-transform:capitalize;text-align:justify;
#blind{font-family:Arial;font-weight:bold;font-size:16px; text-transform:capitalize;text-align:justify;
#training{font-family:Arial;font-weight:bold;font-size:16px; text-transform:capitalize;text-align:justify;



#rightnav {
float:right;
width:50px;
background:#ffffff;
border-right:2px solid #000000;
border-bottom:2px solid #000000;
margin-right:15px;
padding-bottom:20px;
here is the html:
HTML: Select all
<html>
<head>
<title>ICTD Bulletin</title>
<link href="news.css" rel="stylesheet" type="text/css" />
</style>
</head>
<body>
<p class="ictdnews-stayinformed">ictd ebulletin - Stay Informed</p>

<div id="maincontent">
<h4 id="network">New online Register to be installed</h4>
<p>This technique was famously chronicled by Jeffrey Zeldman in his ALA
article A Web Designer's Journey
<http://www.alistapart.com/stories/journey/>, and is an extremely easy
layout to implement requiring only a simple float:left declaration.</p>

<h4 id="learn">Video link connected with Canadian University</h4>
<p>This technique was famously chronicled by Jeffrey Zeldman in his ALA
article A Web Designer's Journey
<http://www.alistapart.com/stories/journey/>, and is an extremely easy
layout to implement requiring only a simple float:left declaration.</p>
<h4 id="systems">New Timing software installed at ICT Directorate labs</h4>
<p>This technique was famously chronicled by Jeffrey Zeldman in his ALA
article A Web Designer's Journey
<http://www.alistapart.com/stories/journey/>, and is an extremely easy
layout to implement requiring only a simple float:left declaration.</p>
<h4 id="blind">New technology installed at Assertitive lab</h4>
<p>This technique was famously chronicled by Jeffrey Zeldman in his ALA
article A Web Designer's Journey
<http://www.alistapart.com/stories/journey/>, and is an extremely easy
layout to implement requiring only a simple float:left declaration.</p>
<h4 id="training">New training session started </h4>

<p>This technique was famously chronicled by Jeffrey Zeldman in his ALA
article A Web Designer's Journey
<http://www.alistapart.com/stories/journey/>, and is an extremely easy
layout to implement requiring only a simple float:left declaration.</p>
<div id="rightnav">
<h4 id="contents">Contents</h4>

</div>

</body>
</html>

Last edited by welshstew; Jan 24th, 2008 at 13:26. Reason: please use tags when placing code in your post
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Jan 24th, 2008, 13:28
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Nav bar not showing

For us lazy people, do you have a link?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Jan 24th, 2008, 15:23
kaz kaz is offline
Up'n'Coming Member
Join Date: Feb 2005
Location: Accra
Age: 42
Posts: 54
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Nav bar not showing

it's http://kazmania.110mb.com/index1.htm. Hope it works
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Jan 24th, 2008, 15:45
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Nav bar not showing

Hmmm ... I get this

FF.jpg
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Jan 24th, 2008, 15:56
Reputable Member
Join Date: Jun 2007
Location: uk
Posts: 459
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Nav bar not showing

your #training is not closed in your css nor is your #rightnav (} is missing)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Jan 24th, 2008, 16:08
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Nav bar not showing

You're also missing a DOCTYPE

What the heck is this

HTML: Select all
<http://www.alistapart.com/stories/journey/>
You have a </style> close but nothing is open.


You probably could have solved your problem by validating first

That's why we ask the members to validate their site before posting for questions.

From PLEASE READ: How and When to post your question!

Quote:
Before you post
....Validate your CSS and Markup (HTML or XHTML).

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old Jan 24th, 2008, 16:12
unitedcraig's Avatar
SuperMember

SuperMember
Join Date: Oct 2007
Location: Stockport
Age: 17
Posts: 844
Blog Entries: 1
Thanks: 0
Thanked 1 Time in 1 Post
Re: Nav bar not showing

Browsers display pages according to the W3C standards, (with the exception of IE6 which has a mind of it's own), the reason people urge you to make your code is valid is not just for a badge to put at the bottom of your site.

If you have valid code, your site will display properly in most browsers, there will always be some exceptions but validating your code will go a long way to ensuring that you have correctly displayed pages in most if not all of the modern browsers.

Listen to karinne, shes actually rather clever
__________________
Last Blog Entry: A Royal Mistake (Feb 20th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old Jan 25th, 2008, 07:12
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,612
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Re: Nav bar not showing

Quote:
Originally Posted by dab42pat View Post
your #training is not closed in your css nor is your #rightnav (} is missing)
If one or two mistake can be consider as a typo! But this one, is a repetitive error. That means you need to learn more on how to write CSS!
To actually answer your PROBLEM anyway, you just have to bring out your <div id="rightnav"> from your <div id="maincontent">. Put it outside from the main content div!
For more info on learning some CSS layout, check this [Link] that I've recently found!
Last Blog Entry: ASP Programming Tips and Technique (Oct 26th, 2007)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
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
Borders not showing Xyis Web Page Design 3 Jul 17th, 2007 14:02
header not showing srae Web Page Design 2 Jan 9th, 2007 15:42
Why my signature is not showing??? alance Webforumz Cafe 5 May 5th, 2006 15:52
background image not showing up in Firefox but showing in other browsers! eskymo Web Page Design 21 Jan 19th, 2006 23:10
php in html - not showing chimp Web Page Design 5 Dec 9th, 2005 00:13


All times are GMT. The time now is 01:31.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization 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