Odd, my reply didn't post...so here it goes again... ;)
Umbraco 4.6.1. This is because of an IE bug. Since the content loaded in that div is dynamic (AJAX) and the div has an overflow: auto; on it it somehow causes the div in question to act as though it has position: static;. The fix is to put position: relative; on the div that's causing this behavior.
Edit /umbraco_client/propertypane/style.css:
.propertypane div.propertyItem { /* add position: relative; here */ }
If you are the Phil I work with, I've just done this. ;) If not, hope this helps.
hi Jay, I'm having the same issue with the Ucomponent: multi-node tree picker, the position:relative should be added in a class treeContainer, but I can't find the css file that contains. Do you know something of this? thank you.
If you're using visual studio you can perhaps open up the site in it and then make a search for the specific css class where you make sure to "search entire solution" for instance.
Move / Copy dialog has nodes overlap text and OK button
In Internet Explorer (IE7/8) the Move, Copy dialog has nodes that overlap the text and OK button.
Is there any way to get around this? Does this happen to other people?
Thanks,
Phil
Hi Phil
That looks a bit odd indeed...what version of Umbraco is this happening on?
/Jan
Odd, my reply didn't post...so here it goes again... ;)
Umbraco 4.6.1. This is because of an IE bug. Since the content loaded in that div is dynamic (AJAX) and the div has an overflow: auto; on it it somehow causes the div in question to act as though it has position: static;. The fix is to put position: relative; on the div that's causing this behavior.
If you are the Phil I work with, I've just done this. ;) If not, hope this helps.
Jay
hi Jay, I'm having the same issue with the Ucomponent: multi-node tree picker, the position:relative should be added in a class treeContainer, but I can't find the css file that contains. Do you know something of this? thank you.
Hi Wilber
If you're using visual studio you can perhaps open up the site in it and then make a search for the specific css class where you make sure to "search entire solution" for instance.
Hope this makes sense to you.
/Jan
hi Jan, I just downloaded the source project of Ucomponents and the file that I need, is added into the core dll. seems we can't do much for fix this.
Did anyone confirm this is an Umbraco core issue? I have one user having the same issue. We are running Umbraco 4.7.
Hey All,
Jay's fix worked for me but just a heads up I had to update the clientDependancy.config version number as per this post:
http://our.umbraco.org/forum/core/general/14106-Client-Dependency-woes-refresh-cache
to get the change to appear.
L
wilberRivera is right.
Add
.treeContainer{ position:relative;}
to
is working on a reply...