Hi Peter,
After some playing around I have been able to solve my problem by doing the follow:
- 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