Rank: Member Groups: Member
Joined: 11/19/2007 Posts: 25
|
I am having a Build 2008.0.72 File Explorer treeview graphics alignment problem in IE6. It works in Firefox 3. I have screen shots to send you.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We have verified that our sample pages work fine on IE 6. So please try to run the samples and see if you have the same problem. If the sample runs fine and your page does not, then most likely it is a style problem, in that case you can try to comment out your styles block by block and see if you can find the offending styles.
Thanks!
|
Rank: Member Groups: Member
Joined: 11/19/2007 Posts: 25
|
I was using <div align='center'> for containing the File Explorer and the selected file text box. I had a similar problem centering the Grid (solved by centering the div using CSS). The only method I've found to center the File Explorer using IE6 is this javascript after the page loads:
Code: JavaScript
var divWidth=document.getElementById('FEContainer').style;
var sideMargin=(screen.availWidth-700)/2; //File Explorer left splitter width is 700
divWidth.margin='0px ' + sideMargin + 'px';
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Ah...Thanks for sharing!
|