• 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?

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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);
    }
    Thread Starter austinviking

    (@austinviking)

    Thanks very much! Really appreciate the help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Sociable] Love the plugin – really want to get rid of the hover’ is closed to new replies.