Closed
Bug 272371
Opened 21 years ago
Closed 21 years ago
style hidden divs show up on page at all times. Page works OK in IE 5.5+
Categories
(Core Graveyard :: View Source, defect)
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: ricnme, Assigned: mrbkap)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.3) Gecko/20040910
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.3) Gecko/20040910
Style hidden divs are designed to popup when user scrolls over list of links
about mid-page. In Mozilla, divs are always visible and links are not
functioning. Local javascript may be causing unactive links, but divs should
remain hidden in any case.
Reproducible: Always
Steps to Reproduce:
1. go to above URL. View page in Mozilla.
2.
3.
Actual Results:
Designated popup divs are always visible.
Expected Results:
Divs should remain hidden until user moves mouse over links.
Linked CSS style documents from the host root tend to be ignored by Mozilla
especially when the root is not the physical root of the server, i.e., from the
server host name directory vs from the server root.
Also, pertinent style declaration is not from the head area of HTML, but in the
body section due to constraints on the user templates.
Site works OK in IE.
| Assignee | ||
Comment 1•21 years ago
|
||
This is INVALID. The syle rules in question are:
.regMark { font-size: 13px; };
.popHelp { position:absolute; visibility:hidden; top:-120px; left:100px;
z-index:10; };
The extra ; after the .regMark rule (and all such ;s) are causing the next
ruleset to be ignored (as per the CSS spec). If these are removed, then the "pop
ups" are no longer shown.
Status: UNCONFIRMED → RESOLVED
Closed: 21 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•