Many thanks. Problem is that the lettering exceeds the border area, so by changing Login to Partner Login it overlaps and looks terrible. I am using the silver theme. Any input is greatly appreciated. Site under construction is www.servatech.co.za/index.html
You're going to have to make some changes to the background image for the top right box as well as the associated css.
You will need a wider image for:
silver-theme-login-box.jpg
and modify the css accordingly in Actinic.css here:
#silver-login-terms {
background:url("silver-theme-login-box.jpg") repeat scroll 0 0 transparent;
display:inline;
float:right;
height:24px;
margin-right:10px;
width:101px;
}
If you're not happy with that type of modification then the simplest might be just to replace the css with:
#silver-login-terms {
display:inline;
float:right;
height:24px;
margin-right:10px;
width:200px;
}
(See attachment) which will remove the background image and make more space for your text change.
Use Firefox with the Firebug add-in and you can try out these type of changes on the fly.
Comment