How to Remove Bee from Beez Template
Go to the position.css file.
Remove the background line in this block:
.leading
{
background: #EFDEEA url(../images/biene.gif) no-repeat top left;
border: solid 1px #CCCCCC;
color: #000000;
margin: 30px 0px 10px 0px;
padding: 20px 20px 40px 120px;
position: relative;
}
It should be:
.leading
{
border: solid 1px #CCCCCC;
color: #000000;
margin: 30px 0px 10px 0px;
padding: 20px 20px 40px 120px;
position: relative;
}
Since the bee is gone, you may want to change margin and padding. For example:
padding: 20px 20px 40px 20px;