Actions
Bug #17697
closedLinking within page does not work in Firefox
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Miscellaneous
Target version:
-
Start date:
2007-10-18
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
When using links within a page (e.g. created by content element menu / sitemap -> Display sections) they don't work when using Firefox.
Problem:
The following wrap creates invisible anchors (display: none) which will not work for FF:
tt_content.stdWrap.dataWrap = <div class="content_element"><a id="c{field:uid}" style="display: none"></a> |<div style="float:none; clear:both;"></div></div>
Solution:
Change wrap to:
tt_content.stdWrap.dataWrap = <div class="content_element"><a id="c{field:uid}" style="width:0px;height:0px"></a> |<div style="float:none; clear:both;"></div></div>
(issue imported from #M6544)
Actions