Bug #17697
closedLinking within page does not work in Firefox
0%
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)
Updated by Christian Kuhn about 17 years ago
Sorry, I can not confirm this.
With a recent css_styled_content on TYPO3 4.1.2 an anchor will usually look like "<a id="c13"></a>", without any further classes. This is set from
tt_content.stdWrap.dataWrap = <a id="c{field:uid}"></a> in css_styled_content.
I also grepped through 4.1.2 for "display: none", but nothing applied to your context.
Please check if you refer to a recent TYPO3-Version and if maybe this wrap is just only set for your installation in a local template. Please give advice where this wrap can be found in the static templates.
Updated by Marc Wöhlken about 17 years ago
I'm terribly sorry Christian. You are absolutely right this isn't a TYPO3 problem, the wrong setup was inserted by an extensions setup.
Remove / close this "bug", please.