Select the search type
  • Site
  • Web
Search
You are here:  Support/Forums
Support

Bring2mind Forums

IE 7 Display Issue
Last Post 06/23/2008 1:46 PM by Peter Donker. 7 Replies.
Sort:
PrevPrev NextNext
You are not authorized to post a reply.
Author Messages
Warren
New Member
New Member
Posts:4


--
05/16/2008 10:31 AM

I'm not sure if this has been answered before, but in IE7 the details tab at the bottom of DMX4 module overflows the DMX content area and there are no scroll bars or anything being shown, the entire details area is just shown.

I am using DMX 4.02.02 and DotNetNuke version 4.08.00.

Peter Donker
Veteran Member
Veteran Member
Posts:4536


--
05/18/2008 8:39 PM
Hi Warren,

It doesn't happen to me on a regular DNN/DMX. I have seen this on a different system, but it used a custom skin. What skin are you using?

Peter
Warren
New Member
New Member
Posts:4


--
06/11/2008 6:04 AM

Hi Peter,

I am using my own custom skin.  I have narrowed the problem down to being something to do with the DOCTYPE.  The DOCTYPE I am using is XHTML 1.0 Transitional.

Peter Donker
Veteran Member
Veteran Member
Posts:4536


--
06/13/2008 11:06 AM
Hi Warren,

It is indeed the doctype. DMX does seem to do this when doctype is set to XHTML (I also depend on 3rd party UI controls so it's not all under my own control). Please use the default for this.

Peter
Warren
New Member
New Member
Posts:4


--
06/17/2008 5:48 AM

Hi Peter,

I can not really use the default at the moment because the menu I am using (HouseMenu) requires XHTML to work correctly.

Is there no work around for this, I've tried to work out what is causing it and the only thing that I can come up with is the stacking order of the divs. IE seems to have a weird way of handling the z-indexs of divs.

But if there is no possible way then I will try and find another solution.

Warren

Peter Donker
Veteran Member
Veteran Member
Posts:4536


--
06/17/2008 12:04 PM
Hi Warren,

Be my guest and play with the ascx. You can change anything as long as you leave the objects that are there on the page and the javascript is not harmed. Other than that you should be able to tune css, divs, etc. The following are of importance:

ViewCollection.ascx is the main UI control. It holds a splitter that shows the 3 main panels. The third panel (DetailsContent) holds a Tabstrip which receives the details screen(s).

Controls/Details.ascx is the details page that is shown.

ViewCollection.css and module.css hold the css for this part of the UI.

Peter
Warren
New Member
New Member
Posts:4


--
06/18/2008 7:55 AM
Hi Peter,
After some playing around I have been able to solve my problem by doing the follow:
  1. In the module.css I added the following class:
.DetailsPane div
{
          position: relative;
          overflow: auto;
}
2.    In the ViewCollection.css add the following  to the MultiPage class:
overflow: auto;
 
3.    In the Details.ascx changed the following line of code:
 
<div class="Normal" style="width:100%;overflow:hidden;">
 
To the following:
 
<div class="Normal" style="width:100%; position: relative; overflow: auto;">
Not sure if this will be of any help to anyone else but I thought I would post it anyway.
Warren
Peter Donker
Veteran Member
Veteran Member
Posts:4536


--
06/23/2008 1:46 PM
Thanks a lot Warren.
You are not authorized to post a reply.