CSS Navbar float-right

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
lisam11
Forum Newbie
Posts: 3
Joined: Sun Sep 10, 2006 8:52 pm

CSS Navbar float-right

Post by lisam11 »

i am making a website @ freewebs.com and i am having trouble putting my navbar floated right.
Help please
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

How are we supposed to help? You haven't really provided much information. :?
lisam11
Forum Newbie
Posts: 3
Joined: Sun Sep 10, 2006 8:52 pm

Post by lisam11 »

What info do you need? im new to this i dont know very much at all
lisam11
Forum Newbie
Posts: 3
Joined: Sun Sep 10, 2006 8:52 pm

Post by lisam11 »

feyd | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]


here is what it shows



[syntax="css"]
.fw-nav-menu hr {
	display:none;
}
.fw-footer hr {
	display:none;
}

/*
 * NavBar
 * UL containing all the NavBar links
 */
.fw-nav-menu ul {
	margin:20px;
	padding:5px;
	border:1px solid #DDD;
	background:#003366;
	list-style:none;
	text-align: center
}

/*
 * Individual NavBar LI's
 */
.fw-nav-menu li {
	display:none;
	margin:1px;
}

/*
 * Individual NavBar links
 */
        .fw-nav-menu a {  text-decoration: none}
/*

feyd | Please use[/syntax]

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
matthijs
DevNet Master
Posts: 3360
Joined: Thu Oct 06, 2005 3:57 pm

Post by matthijs »

Code: Select all

.fw-nav-menu li {
        display:none;
}
Maybe start with removing the display:none; ...
Post Reply