i found a solution myself.
in style change this
Code:
.glossymenu a.menuitem .statusicon{ /*CSS for icon image that gets dynamically added to headers*/
position: absolute;
top: 5px;
right: 5px;
border: none;
}
with this one
Code:
.glossymenu a.menuitem .statusicon{ /*CSS for icon image that gets dynamically added to headers*/
border: none;
float:right;
margin: 3px 5px; }
After his change IE will give bug.
and define new style for fix IE bug
Code:
<!--[if IE]>
<style>
.glossymenu a.menuitem .statusicon{ /*CSS for icon image that gets dynamically added to headers*/
position: absolute;
top: 5px;
right: 5px;
border: none;
}
</style>
<![endif]-->
and go to hell
Bookmarks