's Blogs

Help File Repository

Blog Last Activity 5 years ago 500 views 3 comments

I'll put my help files here so I don't lose them.

Comments

You must be logged in to post comments, please login or signup (free)
5 years ago

Profile Color and Font Customization


Make your profile fabulously gay!

Copy the CSS code below and paste it after your text in the 'Edit Profile' --> 'Profile' --> 'Profile Description' section.  Don't forget to click Save!  You may want to paste the code in a text editor to make changes before pasting into your profile.

You can find more info on CSS at https://www.w3schools.com/css/default.asp

<STYLE>
* {
    font-family: "Lucida Console";
    color: FireBrick;
}
/* see https://www.w3schools.com/cssref/css_colors.asp for color list */
body {
    background: Red;
}
.col-12.clear-20{
    background: Orange;
}
.wrap-bg.wrap-bg-content {
    background: Yellow;
}
div#ul-comments div div.comment {
    background: Green;
}
.profile-avatar-bg {
    background: Violet;
}
.profile-background {
    max-height: 300px;
}
.col-12.pos-rel {
    overflow: hidden;
    background: CadetBlue;
}
.profile-user-info {
    margin-top: -20%;
    border-bottom: none;
}
ul.video-options.video-options-mobile.this-user-profile.full.nine-items {
    background: Coral;
}
div.wrap-bg {
    background: Blue;
}
div.user-profile-bg div div.item-wrapper.bg-grey, div.user-profile-bg div div.item-wrapper {
    background: LawnGreen;
}
</STYLE>

5 years ago