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

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Locked
LeisureLarry

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

Post 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
Last edited by LeisureLarry on Mon May 14, 2007 9:17 am, edited 1 time in total.
tsw
Power Poster
Power Poster
Posts: 1408
Joined: Tue Dec 13, 2005 10:50 pm

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

Post by tsw »

cant see this behavior in IE7 and dont have ie6 on this machine to test it. can you post a screenshot
LeisureLarry

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

Post by LeisureLarry »

Screenshot attached

[gelöscht durch Administrator]
pishkus

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

Post 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 :)
pishkus

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

Post 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 :)
LeisureLarry

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

Post by LeisureLarry »

Thanks for the help.

width: 97%;

Solves the problem, but really looks ugly in Firefox.
Last edited by LeisureLarry on Mon May 14, 2007 8:56 am, edited 1 time in total.
LeisureLarry

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

Post 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%;
   }
Locked

Return to “CMSMS Core”