I really like this plugin very much but don't want the initial semi-transparent state at all. I don't want to change it or decrease it (which i've seen posts for) but get rid of it all together.
Can anyone help me with this?
I really like this plugin very much but don't want the initial semi-transparent state at all. I don't want to change it or decrease it (which i've seen posts for) but get rid of it all together.
Can anyone help me with this?
Using your FTP program or server file manager, navigate to plugins/sociable/sociable.css.
Back up this file before making any changes.
The final two sections in this file are .sociable-hovers and .sociable-hover:hover.
You should be able to remove these sections completely, and this will remove the transparency affects/hover affects.
Although what I do is reverse the hover affects. I want no transparency when not hovering, and a bit of transparency as a visual cue when hovering. So my sections look like this:
.sociable-hovers {
opacity: 1;
-moz-opacity: 1;
filter: alpha(opacity=100);
}
.sociable-hovers:hover {
opacity: .7;
-moz-opacity: .7;
filter: alpha(opacity=70);
}Thanks very much! Really appreciate the help.
This topic has been closed to new replies.