473,385 Members | 1,630 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Links in Firefox

I have an unordered list of links that forms a horizontal tab bar. It works
perfectly in IE6, IE7, and Opera 9.27. However, in Firefox 2.0.0.14.

For whatever reason, when I click on my tabs/links, nothing happens in
Firefox. (Other links on the page that aren't in this unordered list work
fine.) I assume that my problem is some sort of weirdness related to the
CSS, although I'm darned if I know how to prove it. I have both
WebDeveloper, which I've been using for a few weeks now, and Firebug, which
I've just installed. For all the bells and whistles those tools have on
them, I'm afraid I don't know how to use them to figure this problem out.

Can anyone get me started with some debugging tips? What should I check to
try to zero in on the problem?

For what it's worth, the pages accessed by the links in my tab bar all
render perfectly and I can get to all of the pages by simply typing their
full addresses in the address bar. I just can't get the browser to go to the
desired address by clicking on the tabs.

I've never seen anything quite like this and don't know where to start.

I'd be grateful for any suggestions anyone can make.

--
Rhino

Jun 27 '08 #1
8 1414
In article <g1**********@news.datemas.de>,
"rhino" <No***********************@anonymous.comwrote:
I have an unordered list of links that forms a horizontal tab bar. It works
perfectly in IE6, IE7, and Opera 9.27. However, in Firefox 2.0.0.14.

For whatever reason, when I click on my tabs/links, nothing happens in
Firefox. (Other links on the page that aren't in this unordered list work
fine.) I assume that my problem is some sort of weirdness related to the
CSS, although I'm darned if I know how to prove it. I have both
WebDeveloper, which I've been using for a few weeks now, and Firebug, which
I've just installed. For all the bells and whistles those tools have on
them, I'm afraid I don't know how to use them to figure this problem out.

Can anyone get me started with some debugging tips? What should I check to
try to zero in on the problem?

For what it's worth, the pages accessed by the links in my tab bar all
render perfectly and I can get to all of the pages by simply typing their
full addresses in the address bar. I just can't get the browser to go to the
desired address by clicking on the tabs.

I've never seen anything quite like this and don't know where to start.

I'd be grateful for any suggestions anyone can make.
!

--
dorayme
Jun 27 '08 #2
rhino wrote:
I've never seen anything quite like this and don't know where to
start.
...and neither will we until you give us the URL.

--
-bts
-Friends don't let friends drive Windows
Jun 27 '08 #3

"Beauregard T. Shagnasty" <a.*********@example.invalidwrote in message
news:48***********************@roadrunner.com...
rhino wrote:
>I've never seen anything quite like this and don't know where to
start.

..and neither will we until you give us the URL.
Due to confidentiality issues with my client, I am very reluctant to post a
working URL. Instead, I need some pointers on the best way to find the
problem with the tools at hand. I'm hoping the vast experience of some of
the regulars here will point me in the right direction....

In other words, where would _you_ start looking if tabs in a list starting
behaving the way I have described and you were not at liberty to show anyone
the actual website?

--
Rhino
Jun 27 '08 #4
rhino wrote:
"Beauregard T. Shagnasty" <a.*********@example.invalidwrote in message
news:48***********************@roadrunner.com...
>rhino wrote:
>>I've never seen anything quite like this and don't know where to
start.
..and neither will we until you give us the URL.
Due to confidentiality issues with my client, I am very reluctant to post a
working URL. Instead, I need some pointers on the best way to find the
problem with the tools at hand. I'm hoping the vast experience of some of
the regulars here will point me in the right direction....

In other words, where would _you_ start looking if tabs in a list starting
behaving the way I have described and you were not at liberty to show anyone
the actual website?
Dollar to donuts you have some position: absolute element over your
links. Abuse of absolute positioning is a common error for folks. So
this site is going to be so secret that it will not be published?

Try "Outline Current Elements" or "Positioned Elements" for starters.

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Jun 27 '08 #5
In article <g1**********@news.datemas.de>,
"rhino" <No***********************@anonymous.comwrote:
In other words, where would _you_ start looking if tabs in a list starting
behaving the way I have described and you were not at liberty to show anyone
the actual website?
You could open the source code and the css and progressively remove as
much as does not make the problem go away.

--
dorayme
Jun 27 '08 #6
In article
<do**********************************@news-vip.optusnet.com.au>,
dorayme <do************@optusnet.com.auwrote:
In article <g1**********@news.datemas.de>,
"rhino" <No***********************@anonymous.comwrote:
In other words, where would _you_ start looking if tabs in a list starting
behaving the way I have described and you were not at liberty to show
anyone
the actual website?

You could open the source code and the css and progressively remove as
much as does not make the problem go away.
I'd be tempted to do it the other way round: make up a test page with
just the horizontal tab list, and see if it works at all. Gradually
build everything back in, and see where it breaks.

You could modify the content in you test page(s) so that you could
post them without infringing you client's confidentiality.

One other thing I would do: validate both the html and the css at
the W3C site, and pay careful attention to any errors or warnings:
different browsers handle markup errors (including misplaced :,. etc)
differently, and these can be hard to spot in the source code.
Jun 27 '08 #7
In article <no**************************@news1.chem.utoronto. ca>,
"David C. Stone" <no****@domain.invalidwrote:
In article
<do**********************************@news-vip.optusnet.com.au>,
dorayme <do************@optusnet.com.auwrote:
In article <g1**********@news.datemas.de>,
"rhino" <No***********************@anonymous.comwrote:
In other words, where would _you_ start looking if tabs in a list
starting
behaving the way I have described and you were not at liberty to show
anyone
the actual website?
You could open the source code and the css and progressively remove as
much as does not make the problem go away.

I'd be tempted to do it the other way round: make up a test page with
just the horizontal tab list, and see if it works at all. Gradually
build everything back in, and see where it breaks.
Actually, we are not so much talking different things here. To see this,
think of my suggestion as removing *huge* slabs of stuff as a first try
(by command X, so it can be pasted back, or by use of command Z to
undo...), and if no good, removing less. (btw, actually a description of
something I often do when I am totally puzzled).

--
dorayme
Jun 27 '08 #8
On 2008-05-30, rhino <No***********************@anonymous.comwrote:
I have an unordered list of links that forms a horizontal tab bar. It works
perfectly in IE6, IE7, and Opera 9.27. However, in Firefox 2.0.0.14.

For whatever reason, when I click on my tabs/links, nothing happens in
Firefox. (Other links on the page that aren't in this unordered list work
fine.) I assume that my problem is some sort of weirdness related to the
CSS, although I'm darned if I know how to prove it. I have both
WebDeveloper, which I've been using for a few weeks now, and Firebug, which
I've just installed. For all the bells and whistles those tools have on
them, I'm afraid I don't know how to use them to figure this problem out.

Can anyone get me started with some debugging tips? What should I check to
try to zero in on the problem?
There could be something (transparent) on top of the links that you
can't see but which is stopping the mouse clicks getting through.

Try adding borders and background-colors to suspicious elements to
confirm where they actually are. Beware that borders may alter
margin-collapsing behaviour and therefore things' positions so
background-color is preferable.

Another possibility is the HTML is invalid and the A elements haven't
ended up where you think they are.
For what it's worth, the pages accessed by the links in my tab bar all
render perfectly and I can get to all of the pages by simply typing their
full addresses in the address bar. I just can't get the browser to go to the
desired address by clicking on the tabs.
Does the mouse pointer change into a hand when you hover over them?
Jun 27 '08 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Chris | last post by:
I'm using eight links listed horizontally as a menu on my site. I'm using font-variant:small-caps and they are padded so that they mimic buttons. My gripe is with the way IE handles the focus...
14
by: Philip Herlihy | last post by:
I've been trying to create a simple vertical navigation bar, using (as recommended) an unordered list (UL) of hyperlinks. I'd like to have a hover effect, so I have to style the links themselves....
10
by: andreister | last post by:
He there! I've discovered that the ================================================= document.links('link_id_here').href = "something"; ================================================= is...
3
by: Jim Davis | last post by:
The scenario: 1) Generate a popup window via script. 2) Populate it (again via script) with content that features local (hash) links. In IE 6.x this works - the links work as they should,...
44
by: Viken Karaguesian | last post by:
Hello all, On occasion I want to open hyperlinks (images, etc.) in a new window. In the past, I've used target="_blank" to open the link in a new window. However, using the "target" attribute...
1
by: Sura | last post by:
Hi I have a flash interactive window which has html links and this appears on an html page. This window can be moved with the mouse on the html page. The html page has an iFrame too. When the...
10
by: Michael7 | last post by:
Hi everyone, With all the trouble I have concerning simple things with CSS (still learning), I think I am getting it now, but have stumbled upon a relatively NOT simple problem. I've looked all...
2
by: lifemaker | last post by:
Hi, I made an attempt to use Open Realty with custome template. Prepared CSS for IE without previewing in Firefox (mistake), and today I saw that links doesn't work in Firefox. When using...
0
by: Peter Horlock | last post by:
Hi, Using css (that should be working in Firefox 2,3 and Internet Explorer 6,7 at least), I would like to create the following: My Links: Link1 +show more links <!--- This is shown when...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.