Hi,
it seems that in ie8 there is an horizzontal scrollbar caused by the following code in controls ForumIconLegend.ascx:
<table style="padding: 2px; margin: 2px" width="100%">
It is necessary to delete "margin: 2px" to resolve it.
Another issue with i8 is the shoutbox scroll. When you scroll down the scrollbar and happens the refresh of the timer the scrollbar go up and does't remain in that position you scrolled.
That problem was solved with the followinf code:
public static string DisablePageManagerScrollJs
{
get
{
return
@"
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_beginRequest(beginRequest);
function beginRequest() {
prm._scrollPosition = null;
}
";
}
}
In ie8 it doesn't work. anyone has got a solution working for ie8?
Thanks
Enzo
Edited by user
13 years ago
|
Reason: Not specified