Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Closed Thread
Old 09-22-2006, 07:51 PM   #1 (permalink)
 
Newb Techie

Join Date: Oct 2004

Posts: 23

rzermatt

Send a message via AIM to rzermatt Send a message via MSN to rzermatt Send a message via Yahoo to rzermatt Send a message via Skype™ to rzermatt
Default Javascript Menus

Hello all,

I have been working recently on a website with a javascript menu:

http://finalphoenix.com/ftboe/

Me, being the n00b I am with javascript, used a program to generate the menu. The menu, which is stored in a .JS file in the same directory works fine, in internet explorer! It loads in the right location, but in firefox, it goes to the upper right hand corner of the page...

What do I do about this?

I created a CSS style called 'menu', and I would like to place the javascript menu there for simplicity, but for some reason, when I do, it never works! What should I do about this so that it is compatible in both browsers?

I will try to answer any questions as fast as possible!

Thanks again
rzermatt is offline  
Old 09-22-2006, 09:20 PM   #2 (permalink)
 
Wizard Techie

Join Date: Jan 2005

Location: Delaware

Posts: 3,459

turtile is on a distinguished road

Default

You need to postition the layer.

#menu {
background-color: #faab00;
vetical-align:middle;
height: 60px;
width: 800px;
}


or

#menu {
position:relative;
background-color: #faab00;
height: 60px;
width: 800px;
}

<center>
<div id="menu">
</div>
</center>

You also need a 60px margin for the main element.

Is this Franklin Township in NJ?
__________________
Intel Prescott 3.0 Socket 478
Seagate 250GB 16MB Cache
160GB Seagate in Vantec NexStar 3 Enclosure
ASUS P4P800-E Deluxe
LG DVD-ROM
NEC DVD-RW DL
1GB Corsair PC3200
GeForce 5700 256MB DDR
turtile is offline  
Old 09-23-2006, 12:14 AM   #3 (permalink)
 
Newb Techie

Join Date: Oct 2004

Posts: 23

rzermatt

Send a message via AIM to rzermatt Send a message via MSN to rzermatt Send a message via Yahoo to rzermatt Send a message via Skype™ to rzermatt
Default

Thanks alot! That really helped. And yes, this is Franklin Twp NJ.
rzermatt is offline  
 
Closed Thread

Thread Tools
Display Modes

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