Page 1 of 1

IE6 problem with the image manager in CMS MS 1.06 [SOLVED]

Posted: Fri May 11, 2007 8:58 am
by LeisureLarry
Has anybody a solution for the following problem. In IE6 (and not in Firefox 1.5) the scroll bar of the iframe of the image manager is hidden below the scroll bar of the complete webpage. Seems to me that IE6 shows the bar outside the iframe and Firefox inside the frame.

Would it be possible to change the width of the iframe or something like that in order to have be able to use the iframe scroll bar in both browsers?

Greats from Germany
LeisureLarry

Re: IE6 problem with the image manager in CMS MS 1.06

Posted: Fri May 11, 2007 9:58 am
by tsw
cant see this behavior in IE7 and dont have ie6 on this machine to test it. can you post a screenshot

Re: IE6 problem with the image manager in CMS MS 1.06

Posted: Fri May 11, 2007 11:38 am
by LeisureLarry
Screenshot attached

[gelöscht durch Administrator]

Re: IE6 problem with the image manager in CMS MS 1.06

Posted: Fri May 11, 2007 11:59 am
by pishkus
well, i have couple of suggestions:

1.

Code: Select all

iframe.imageframe  {
   margin-top: 10px;
   border: none;
   width: 100%;
   }
it's in your_install_dir/admin/themes/default/css/style.css - edit the width property. I guess setting it to 80% would solve the problem, because the width would be still enough for 5 elements inseide it.

2. Use it the way it is - you can still scroll inside the frame.

3. Update to IE7 or get rid of IE :)

Re: IE6 problem with the image manager in CMS MS 1.06

Posted: Fri May 11, 2007 12:03 pm
by pishkus
tsw wrote: cant see this behavior in IE7 and dont have ie6 on this machine to test it. can you post a screenshot
Some time I've found this solution:
http://go.microsoft.com/fwlink/?LinkId=70868

saved me loads of time.
Just thought it might be useful :)

Re: IE6 problem with the image manager in CMS MS 1.06

Posted: Mon May 14, 2007 8:54 am
by LeisureLarry
Thanks for the help.

width: 97%;

Solves the problem, but really looks ugly in Firefox.

Re: IE6 problem with the image manager in CMS MS 1.06

Posted: Mon May 14, 2007 9:04 am
by LeisureLarry
Using a browser specific solution seems to solve it, but don´t know about IE7.

Code: Select all

iframe.imageframe  {
   margin-top: 10px;
   border: none;
   width: 97%;
   }

iframe.imageframe[class]  {
   width: 100%;
   }