Skip to main content

Posts

Showing posts with the label transparent

Hide whos amung us widget from visitors

Last time i've wrote about Removing the link of whos amung us widget and this time i'm going to show you how to hide it form others who's amung us if you haven't already installed it in you'r blog/website go to whos.amung.us [ go ] now to the Showcase , you can see the option at the top-right corner once you have reached there click on the original (or any other since its going to be visible) now copy the code go to www.blogger.com [ go ] then navigate to Design after that click on add widget and add a new html widget and paste widget code along with the code given below < Code > < style > #who-invi { ;filter:alpha (opacity=00); opacity:0.0; } < /style > < div id="who-invi" > < script > var _wau = _wau || []; _wau.push(["tab", " TraCkinGKey ", "ruy", "left-middle"]); (function() { var s=document.createElement("script"); s.async=true; s.src=...

Make < html > widget in you'r blog transparent and opaque on mouse over

For a live example check out the floating share button on the left which becomes opaque on mouse over now lets start the coddings How to First of all go to blogger [ go ] then go to design click add widget or edit widget (which you want to be translucent) add the code given below at the top < style > #opacity { filter:alpha(opacity= 20 ); opacity: 0.2 ; } /style > < div class="opacity" onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100" onmouseout="this.style.opacity= 0.2 ;this.filters.alpha.opacity= 20 " > then add /div > at the bottom now you can change the opacity by changing the value 20 & 0.2 in a way that if you change 20 to 30 you should change 0.2 to 0.3 then you can save the widget to see the effects Note that if you set the value 20 to 100 & 0.2 to 1 the widget will be opaque and if its set to 00 and 0.0 it will be completely transparent