You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jspwiki.apache.org by "Dirk Frederickx (JIRA)" <ji...@apache.org> on 2007/10/29 22:01:50 UTC

[jira] Resolved: (JSPWIKI-2) long preformatted lines cause Left Menu to drop to bottom of page (IE 6 only)

     [ https://issues.apache.org/jira/browse/JSPWIKI-2?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dirk Frederickx resolved JSPWIKI-2.
-----------------------------------

    Resolution: Fixed

Fixed inv v2.5.147

The problem was due to inproper handling of overflow:auto on the PRE element on IE6.
The PRE element must get a hasLayout=true, which was not the case.

An IE6-hack was need to get the proper result:
{noformat}
/*ie6 hack*/
* html pre {
	overflow:none; overflow-x:auto; /*proprieatary ie*/
	width:95%;  /* hasLayout=true */
	padding-bottom:1.5em; /*take scrollbar into account on ie*/
}
{noformat}



> long preformatted lines cause Left Menu to drop to bottom of page (IE 6 only)
> -----------------------------------------------------------------------------
>
>                 Key: JSPWIKI-2
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-2
>             Project: JSPWiki
>          Issue Type: Bug
>          Components: Default template
>    Affects Versions: 2.5.139-beta
>         Environment: Server:
> JSPWiki 2.5.143
> Tomcat 6.0.13
> JDK 1.5.0_08-b03
> SuSE Linux  10.0
> Client:
> Windows XP
> IE 6.0.2800.1106
>            Reporter: Harry Metske
>            Assignee: Dirk Frederickx
>             Fix For: 2.6.0
>
>         Attachments: Screenshot-JSPWiki-Destorted-IE6.png
>
>
> When using pages with long preformatted lines (between triple accolades {{{ }}}), the Left Menu drops down to the bottom of the page, making the navigation of JSPWiki a little bit awk.
> The problem only occurs with IE 6, not with FF and not with IE 7.
> An example of this can be found at :  http://www.computerhok.nl/JSPWiki/Wiki.jsp?page=TestWidePage (the bug only shows up with IE 6 only)
> SInce IE 6 is the browser used by 95% of my colleagues, this really is a showstopper for migrating to the new JSPWiki version.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.