This solution will hide the username on the promo
go here
templates/base/css/index.css
Find:
#indexPhotoLabel div.label_thumb {
float: left;
padding-left: 10px;
position: relative;
}
REPLACE WITH
#indexPhotoLabel div.label_thumb {
display: none;
visibility: hidden;
float: left;
padding-left: 10px;
position: relative;
}
This will hide the transparency:
FIND:
#indexPhotoLabel {
background: url("../images/opSplash.png") repeat-x scroll left top transparent;
bottom: 0;
height: 82px;
line-height: 82px;
position: absolute;
width: 100%;
z-index: 1;
}
REPLACE WITH:
#indexPhotoLabel {
background: transparent;
bottom: 0;
height: 82px;
line-height: 82px;
position: absolute;
width: 100%;
z-index: 1;
}
Tried this, then cleaned cache from admin, and manually, plus browser cache but both are still showing...?
i have another template that Im using but Im pretty sure this info is drawn from main dolphin code and not the template files.