Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author cybernetikz

    (@cybernetikz)

    hello,

    check your site and i see the icons are showing normal but when i hover the icons then it become semi transparent,

    do you want always it should be normal ? remove transparent features?

    Thread Starter luigitanzi

    (@luigitanzi)

    yes, if you can…

    Thread Starter luigitanzi

    (@luigitanzi)

    Solution?

    Plugin Author cybernetikz

    (@cybernetikz)

    just download and open following file

    /wp-content/plugins/easy-social-icons/js/cnss.js

    and replace with following code

    jQuery(document).ready(function($) {
    	jQuery('table.cnss-social-icon tr td img').hover(function() {
    		jQuery(this).animate({
    			opacity: 1
    			//marginTop:'-5px'
    		  }, 200 );
    	},
    	function() {
    		jQuery(this).animate({
    			opacity: 1
    			//marginTop:'0px'
    		  }, 200 );
    	});
    
    	jQuery('ul.cnss-social-icon li img').hover(function() {
    		jQuery(this).animate({
    			opacity: 1
    		  }, {duration:200, queue:false} );
    	},
    	function() {
    		jQuery(this).animate({
    			opacity: 1
    		  }, {duration:200, queue:false} );
    	});
    });

    save and upload to server.

    that’s it.

    Thread Starter luigitanzi

    (@luigitanzi)

    Nothing, i even tried “opacity: 0” and also by moving the code into other areas of the page, nothing… the opacity remains… E’ can perhaps remove the effect of activation? Then only fixed icons…

    Plugin Author cybernetikz

    (@cybernetikz)

    “opacity: 0” means full transparent will be not visible.

    did you tried above code? after doing the change you must have to clear cache.

    better you can edit this file /wp-content/plugins/easy-social-icons/js/cnss.js

    and delete all the code in this file, then save and upload.

    this should definitely works for you, must clear cache (press Ctrl+F5 in browser) before check.

    Thread Starter luigitanzi

    (@luigitanzi)

    I’m sorry but i have not resolved, but i solved it in another way, thanks for the support…

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Remove transparency to the icons’ is closed to new replies.