Hi,
Your login menu bar is absolutely positioned, 20 px of the right side,
and your banner goes behind it if it has not enough space,
Search for ".ad_global_header" in your stylesheets,
Admincp ->Search in templates,
then instead of this,
.ad_global_header {
}
put this:
.ad_global_header {
float:left;
margin-top:60px;
position:relative;
margin-left:100px;
}
Adjust the values margin-left and margin-top to your needs
|