Fancy Navigation, I cannot, for the love of God, figure out how to make nav like this. |
Fancy Navigation, I cannot, for the love of God, figure out how to make nav like this. |
Oct 22 2008, 06:53 PM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Aug 2008 Member No: 681,059 |
Hello! I have been battling my head going in circles trying to figure out how to make a navigation bar like this one:
http://www.createblog.com/layouts/code.php?id=15259 Who can help me out? :) Thanks! Amanda |
|
|
|
![]() |
Oct 22 2008, 07:51 PM
Post
#2
|
|
|
AKA RockIt Studios ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 2,286 Joined: Jun 2006 Member No: 421,809 |
as Nat(hope you don't mind me calling you that. please PM a bitchy message if you do mind.
all you have to do is assign your links to a class (i'll use nav as an example), and go crazy with the CSS. here's the basics: CODE <a href="linkage" class="nav">Text</a> <style type="text/css"> a.nav:link{ font-family:whatever; font-size:number; text-align:center; color:000000; text-decoration:none;} </style> that's your basic link and CSS. to add the awesome rollovers, just add in the hover and set a background color and left border, like this: CODE <style type="text/css">
a.nav:hover{ color:whatever; background-color:whatever; border-left-width:#px; border-left-color:whatever; border-left-style:solid;} </style> |
|
|
|
Amanda-x Fancy Navigation Oct 22 2008, 06:53 PM
manny-the-dino The navigation bar is simply text.
Moved to Mysp... Oct 22 2008, 06:54 PM
Amanda-x Well, not COMPLETELY only text. Haha. If you hover... Oct 22 2008, 06:58 PM
manny-the-dino Ohhhhhhh. I didn't hover over them lol.
They... Oct 22 2008, 07:04 PM
manny-the-dino ^ No, it's totally fine if you call me Nat.
... Oct 22 2008, 08:02 PM
Anarchy That kind of rollover requires a bit of experiment... Oct 23 2008, 12:42 PM![]() ![]() |