Send Me a Private Note Button
Design and Skin Customization
Ok, I'm back to trying to adjust this 'send message' icon's appearance.
Thanks Michael... I removed that section of styling code from my profile sidebar template, and I put it above the 'status box' within my skin's profile.css file... here is how that section looks now in my profile.css file:
/* @title Profile Image Hover */
/* @help When Hovering over the Profile Image, the Change Profile Image hover box will appear */
.profile_hoverimage {
background-color: #333333;
position: absolute;
top: 15px;
left: 15px;
padding: 3px;
display: none;
opacity: 0.8;
border-radius: 3px;
}
.profile_hoverimage a {
text-decoration: none;
}
.profile_hoverimage a:hover {
text-decoration: none;
}
.profile_image:hover .profile_hoverimage {
display: block;
cursor: pointer;
}
/* @message this member envelope icon */
#profile_contact {
text-align: center;
}
#profile_contact .sprite_con {
display: inline;
border: none;
padding: 10px;
box-shadow:none;
}
.stat_entry_box {
float: left;
background-color: #FFFFFF;
border-width: 1px;
border-color: #999999;
border-style: solid;
border-radius: 3px;
padding: 3px 9px;
margin: 6px 6px 0 0;
font-size: 12px;
text-transform: uppercase;
}
In my ACP, my profile.css layout NOW looks like this:
updated by @strumelia: 07/26/18 10:18:33AM