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
IE6 problem with the image manager in CMS MS 1.06 [SOLVED]
-
LeisureLarry
IE6 problem with the image manager in CMS MS 1.06 [SOLVED]
Last edited by LeisureLarry on Mon May 14, 2007 9:17 am, edited 1 time in total.
Re: IE6 problem with the image manager in CMS MS 1.06
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
Screenshot attached
[gelöscht durch Administrator]
[gelöscht durch Administrator]
-
pishkus
Re: IE6 problem with the image manager in CMS MS 1.06
well, i have couple of suggestions:
1.
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
1.
Code: Select all
iframe.imageframe {
margin-top: 10px;
border: none;
width: 100%;
}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
Some time I've found this solution:tsw wrote: cant see this behavior in IE7 and dont have ie6 on this machine to test it. can you post a screenshot
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
Thanks for the help.
width: 97%;
Solves the problem, but really looks ugly in Firefox.
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
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%;
}

