This Message Forum is no longer in use

Please use the new Bravenet Help Forums FOUND HERE

General Forum
This Forum is Locked
Author
Comment
Guestbook script covers links on template

http://alesecoco.org/guestbook_09.html

This site has pre-made templates, with some javascript links in it's nav_bar.

When I added my bravenet Guestbook script it appeared in front of the links.

I added some line breaks to make it fit, but is there a way to put the Guestbook script under the nav bar links?

Re: Guestbook script covers links on template

I made a copy of your web page and removed the line breaks that you were using for positioning, so I could see the problem. Then I had to look up the original menu scripting to do some comparisons. The scripting for the guest book may be setting a Z-Index but the menu does not. I believe that the original menu styling defined a Z-Index.

Below is a snippet of Javascript code from your web page. Add the highlighted element to force your dropdown menu items to be in front of the guest book. I checked it in Firefox and Internet Explorer and it seemed to work fine.

c.style.position = "absolute";
c.style.top = top +'px';
c.style.left = left+'px';
c.style.visibility = "visible";
c.style.zIndex = 1;

Re: Guestbook script covers links on template

Thanks, that was it. Sorry for the delayed reply, I've been out of town.