User name displaying on image banner when logged in.. How to..

Does anyone know how to either remove the user name from being displayed (on translucent grey box) on top of the image banner on home page, or even better to have it fade out after a time???

 

If not, then I guess it would be easier to leave the members thumb an name there but remove the grayed out box that surround them?

Quote · 23 Jun 2011

This solution will hide the username on the promo

go here

templates/base/css/index.css

Find:

#indexPhotoLabel div.label_thumb {
    floatleft;
    padding-left10px;
    positionrelative;
}
REPLACE WITH
#indexPhotoLabel div.label_thumb {
    displaynone;
visibility: hidden;
    floatleft;
    padding-left10px;
    positionrelative;
}
This will hide the transparency:
FIND:
#indexPhotoLabel {
    backgroundurl("../images/opSplash.png") repeat-x scroll left top transparent;
    bottom0;
    height82px;
    line-height82px;
    positionabsolute;
    width100%;
    z-index1;
}
REPLACE WITH:
#indexPhotoLabel {
    background: transparent;
    bottom0;
    height82px;
    line-height82px;
    positionabsolute;
    width100%;
    z-index1;
}
Web Development, Multimedia Design and Social Media.
Quote · 23 Jun 2011

Try reading up on this thread.

http://www.boonex.com/forums/topic/How-to-get-rid-of-the-JOIN-button.htm

[edit] nevermind..

ManOfTeal.COM a Proud UNA site, six years running strong!
Quote · 23 Jun 2011

 

This solution will hide the username on the promo

go here

templates/base/css/index.css

Find:

#indexPhotoLabel div.label_thumb {
    floatleft;
    padding-left10px;
    positionrelative;
}
REPLACE WITH
#indexPhotoLabel div.label_thumb {
    displaynone;
visibility: hidden;
    floatleft;
    padding-left10px;
    positionrelative;
}
This will hide the transparency:
FIND:
#indexPhotoLabel {
    backgroundurl("../images/opSplash.png") repeat-x scroll left top transparent;
    bottom0;
    height82px;
    line-height82px;
    positionabsolute;
    width100%;
    z-index1;
}
REPLACE WITH:
#indexPhotoLabel {
    background: transparent;
    bottom0;
    height82px;
    line-height82px;
    positionabsolute;
    width100%;
    z-index1;
}

 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.

Quote · 23 Jun 2011

Funny, gave it 15mins, then it worked!...Undecided

 

 

Thanks :-)

Quote · 23 Jun 2011

 

Funny, gave it 15mins, then it worked!...Undecided

 

 

Thanks :-)

 Yes probably the chached weas not yet cleaned =)

You r welcome!

Web Development, Multimedia Design and Social Media.
Quote · 23 Jun 2011
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.