Log in

View Full Version : Link clicking issue



ModernRevolutions
11-19-2008, 10:10 AM
ok my website is here: http://www.modernrevolutions.net

The problem Im having is when i click on any of the navigation bar links the scroll bar appears on the bottom. Here is a screen shot:http://i108.photobucket.com/albums/n28/studio30/clicking.png.
How do I get rid of that? I checked in IE and it doesn't happen. So Im guessing its only Mozilla Firefox thats doing it? Thanks

monicasaha
11-19-2008, 12:07 PM
mozilla causing problem that means ur coding definately has problem.
change the code.. u hav this


div style="position:absolute;left:526px; top:450px; width:180px;height:200px;overflow:auto;

make overflow:auto; off

thanks

Snookerman
11-19-2008, 12:48 PM
make overflow:auto; off
In case you don't know how, change this in the style of the div containing the menu:

overflow:hidden;

Medyman
11-19-2008, 01:50 PM
mozilla causing problem that means ur coding definately has problem
Firefox isn't infallible. There are plenty of quirky things that only happen in Firefox than need specific workarounds. A lot less than IE, of course, but still there. It's important to understand what you're doing. Don't just assume that it's wrong because it's not working in Firefox.

Snookerman
11-19-2008, 03:16 PM
Firefox isn't infallible. There are plenty of quirky things that only happen in Firefox than need specific workarounds. A lot less than IE, of course, but still there. It's important to understand what you're doing. Don't just assume that it's wrong because it's not working in Firefox.
You took the words out of my mouth (and changed them a bit, and added some new ones)!

ModernRevolutions
11-19-2008, 07:01 PM
thanks! it worked! and creative avatar Snookerman :D

Snookerman
11-19-2008, 08:48 PM
Hehe, thanks! 30 more posts and you can release your creativity as well!

rodneykm
11-19-2008, 09:13 PM
Side note here.


overflow-x:auto; (or none, scroll)
overflow-y:auto; (or none, scroll)

That can come in handle when you want to control the horizontal or vertical scroll bar.

Snookerman
11-19-2008, 10:02 PM
Actually the possible values are:
hidden - cuts the content, displays no scroll bar
auto - cuts the content and then displays scroll bar
scroll - displays scroll bar and cuts the content
visible - does not cut the content, this is the default