Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

seo How To Add Rainbow Color Effect For Your Links In Blogger/Blogspot 2013

Seo Master present to you:

Hi friends! Rainbow color effect change your blogger link color to rainbow effect. This widget works based on simple JavaScript. Once it’s applied, all links on the page exhibit a rainbow effect on mouse over. Do you want to get this widget, just follow this post.




Watch Live Demo:


Entertainment – Keep cursor over this link.



First Sign in to your blog and go to

  • Layout > Page Elements > “Add Gadget” where you want to see this

  • Select HTML/JavaScript

  • Paste below code in pop up window.



<script src="http://www.weebly.com/uploads/8/2/7/3/8273197/rainbow_colors_entertainment.js" type="text/javascript"></script>



  • Save it.

Enjoy......................



2013, By: Seo Master

seo How To Add Google Translate Widget To Your Blogger/Blogspot 2013

Seo Master present to you:

Sometime people confused about our Blog because they have no idea about your Blog language. In this situation people leave your blogger. Now Google produced a widget,that translate your blog content to any language. We must insert this widget in your website for popularity.




First Sign in to your blog and go to

  • Layout > Page Elements > “Add Gadget” where you want to see this
  • Select HTML/JavaScript

  • Paste bellow code in pop up window
Copy This Code
<div id="google_translate_element"></div>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({
pageLanguage: 'en'
}, 'google_translate_element');
}
</script>
<script src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit" type="text/javascript"></script>






Save it.

 ...................................End......................................
2013, By: Seo Master

seo How To Add Flash Animated Label Cloud Widget In Your Blogger/Blogspot 2013

Seo Master present to you:
This is a special post about animated label cloud widget. This widget works in all blogger templates. It is very easy to install in Blogger. Just follow this post if you want to get this widget.



To add this widget to your blog, Log in to Blogger

Go to Layout -> Add a Gadget -> HTML/JavaScripttype, then add this code to it.


Copy This Code
<div id="w2bFlashContent"><p style="display:none;">Flash Labels 
by <a href="http://www.entertainer001.blogspot.com/">Entertainment</a></p></div>
<script
type="text/javascript">
/*<![CDATA[*/
var w2bFlashLabelSettings =
{
blogurl : "http://www.entertainer001.blogspot.com",

color : "ffffff",
hoverColor :
"f50000",
backgroundColor: "ed0e21",
size : 12,
speed : 100,
width : 250,
height : 250,
transparency :
true
};
/*]]>*/
</script>
<script type="text/javascript"
src="http://bloggerblogwidgets.googlecode.com/svn/trunk/w2b_new_flash_label_cloud.js"></script>




Edit red color with your idea. You must change website url(red color) with your website url.  Save it.


 ..........................................END........................................
2013, By: Seo Master

seo How To Add Auto Scrolling Recent Posts Widget (v3) In Your Blogger/Blogspot 2013

Seo Master present to you:

 Hi Friends, I like to share a new trick about auto scrolling recent posts widget.
It is very simple to install in your Blogger. If you want to try it. Just follow this post.



To add this widget to your blog, Log in to Blogger

Go to Layout -> Add a Gadget -> HTML/JavaScripttype, then add this code to it.

Copy This Code
 
<script type="text/javascript">
var w2bWidth= 100;
var w2bScrollAmount=5;
var w2bScrollDelay=75;
var w2bDirection="left";
var w2btargetlink="yes";
var w2bnumPosts=30;
var w2bBulletchar =">>>";
var
w2bimagebullet="yes";
var w2bimgurl="https://lh4.googleusercontent.com/-joaWPJD0l6Q/T8BezvbZ2gI/AAAAAAAAF8s/lC9tGm8VUzk/s128/w.gif";

var w2bfontsize=13;
var w2bbgcolor="ffffff";
var w2blinkcolor="FF0000";
var w2blinkhovercolor="3366CC";
</script>
<script
type="text/javascript" src="http://www.weebly.com/uploads/8/2/7/3/8273197/entertainment_rpsscoller_v3.js"
></script>
<script type="text/javascript" src="Your Blog URL/feeds/posts/default?alt=json-in-script&callback=w2bAdvRecentPostsScrollerv3&max-results=30" ></script>
<noscript><a href="http://www.entertainer001.blogspot.com">Entertainment</a></noscript>


Edit red color with your idea.

Save it.

..........................................END........................................

2013, By: Seo Master

seo How To Add A Tag Cloud Widget (Cloud Labels) To Your Blogger/ Blogspot 2013

Seo Master present to you:

Now i share a special widget, It shows your labels (Categories) like a Cloud. It is 100% working with any blogger templates. It is very easy to install in your blogger follow our tutorials.





Step 1: Log in your Blogger.

Step 2: Go to Layout >Page Elements



Step 3: Click “Add a gadgets” option then select “ Labels” Gadget from the given list
Make sure that you have the Labels Page Element installed. If you haven't already...


Step 4: Save it.



Step 5: Now go to Templates>Edit HTML


Step 6: Make sure that the "Expand Widgets Template" box is unchecked.


Step 7: Find Blow code (Ctrl+F).
<b:widget id='Label1' locked='false' title='Tags' type='Label'/>
Your code may look a little different. So try to find type='Label'.

Step 8: Replacing tat code with below code.
Once you've located type='Label', remove the whole line of code that looks just like the code mentioned in step 7.


Step 9: Replace above line with below code

Copy This Code


/*
Distributed by Arun Johnson at entertainer001.blogspot.com
*/ <b:widget id='Label1' locked='false' title='Tags' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content' style='text-align: justify;'>
<script type='text/javascript'>
/*
Simple Blogger Tag Cloud Widget
by Raymond May Jr.
http://www.compender.com
Released to the Public Domain
*/

//Settings / Variables
var max = 150; //max css size (in percent)
var min = 70; //min css size (in percent)
var showCount = false; // show counts? true for yes, false for no
var minCount = 1; // what is the minimum count for a tag to be shown? 1 for all


//Begin code:
var range = max - min;

//Build label Array
var labels = new Array();
<b:loop values='data:labels' var='label'>
labels.push(&quot;<data:label.name/>&quot;);
</b:loop>

//URLs
var urls = new Array();
<b:loop values='data:labels' var='label'>
urls.push(&quot;<data:label.url/>&quot;);
</b:loop>

//Counts
var counts = new Array();
<b:loop values='data:labels' var='label'>
counts.push(&quot;<data:label.count/>&quot;);
</b:loop>

//Number sort funtion (high to low)
function sortNumber(a, b)
{
return b - a;
}

//Make an independant copy of counts for sorting
var sorted = counts.slice();

//Find the largest tag count
var most = sorted.sort(sortNumber)[0];

//Begin HTML output
for (x in labels)
{
if(x != &quot;peek&quot; &amp;&amp; x != &quot;forEach&quot; &amp;&amp; counts[x] >= minCount)
{
//Calculate textSize
var textSize = min + Math.floor((counts[x]/most) * range);
//Show counts?
if(showCount)
{
var count = &quot;(&quot; + counts[x] + &quot;)&quot;;
}else{
var count = &quot;&quot;;
}
//Output
document.write(&quot;<span style='font-size:&quot; + textSize + &quot;%'><a href='&quot; + urls[x] + &quot;' style='text-decoration:none;'>&quot; + labels[x] + count + &quot;</a></span> &quot; );
}
}
</script>
<br/>
<span style="font-size:80%;float:right;">Powered by <a href="http://www.entertainer001.blogspot.com">Entertainment</a></span>
</div>
</b:includable>
</b:widget>





 Before saving the template make sure to click preview. The new tag cloud should now be visible. If not, make sure that you've completed all the steps correctly.




............................................End.......................................................



2013, By: Seo Master

seo How To Add Blogger Sign In Form On Blogger/Blogspot 2013

Seo Master present to you:

Any way to fix a sign in box to your blogger ? i will show you a simple way to add Google sign in box to your blogger. Follow step bye step.







  1. Log in your Blogger .Then go to Design then Layout.
  2. Click on ‘Add a Gadget’ option placeholder where you want the news slider to appear.
  3. Select ‘HTML/JavaScript
  4. Copy and then paste the code below into the ‘Content’ field (you may leave the ‘Title’ field blank)

Copy This Code


<div style="border:1px solid #C3D9FF;">
<form id="gaia_loginform" action="https://www.google.com/accounts/ServiceLoginAuth" method="post" onsubmit="return(gaia_onLoginSubmit());">
<div id="gaia_loginbox">
<table class="form-noindent" cellspacing="3" cellpadding="5" width="100%" border="0">
<tr>
<td valign="top" style="text-align:center" nowrap="nowrap" bgcolor="#e8eefa">
<input type="hidden" name="ltmpl" value="start" />
<div class="loginBox">
<table id="gaia_table" align="center" border="0" cellpadding="1" cellspacing="0">
<tr>
<td colspan="2" align="center">
<font size="-1">Sign in with your</font>
<table>
<tr>
<td valign="top">
<img src="https://www.google.com/accounts/google_transparent.gif" alt="Google" />
</td>
<td valign="middle">
<font size="+0"><b>Account</b></font>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" align="center">
</td>
</tr>
<tr id="email-row">
<td nowrap="nowrap">
<div align="right">
<span class="gaia le lbl">Email:</span>
</div>
</td>
<td>
<input type="hidden" name="continue" id="continue" value="https://www.blogger.com/loginz?d=http%3A%2F%2Fwww.blogger.com%2Fhome&a=ADD_SERVICE_FLAG" />
<input type="hidden" name="service" id="service" value="blogger" />
<input type="hidden" name="naui" id="naui" value="8" />
<input type="hidden" name="fpui" id="fpui" value="2" />
<input type="hidden" name="skipvpage" id="skipvpage" value="true" />
<input type="hidden" name="rm" id="rm" value="false" />
<input type="hidden" name="dsh" id="dsh" value="-5001523091454835929" />
<input type="hidden" name="ltmpl" id="ltmpl" value="start" />
<input type="hidden" name="alwf" id="alwf" value="true" />
<input type="hidden" name="alinsu" id="alinsu" value="0" />
<input type="hidden" name="ltmpl" id="ltmpl" value="start" />
<input type="hidden" name="timeStmp" id="timeStmp" value=''/>
<input type="hidden" name="secTok" id="secTok" value=''/>
<input type="hidden" name="GALX" value="EmaSfmXjlk8" />
<input type="text" name="Email" id="Email" size="18" value="" class='gaia le val' />
</td>
</tr>
<tr>
<td></td>
<td align="left">
<div style="color: #666666; font-size: 75%;">ex: pat@example.com</div>
</td>
</tr>
<tr id="password-row" class="enabled">
<td align="right" nowrap="nowrap">
<span class="gaia le lbl">Password:</span>
</td>
<td>
<input type="password" name="Passwd" id="Passwd" size="18" class="gaia le val" />
</td>
</tr>
<tr>
<td> </td>
<td align="left">
</td>
</tr>
<tr id="rememberme-row" class="enabled">
<td align="right" valign="top">
<input type="checkbox" name="PersistentCookie" id="PersistentCookie" value="yes" checked='checked' />
<input type="hidden" name='rmshown' value="1" />
</td>
<td>
<label for="PersistentCookie" id="PersistentCookieLabel" class="gaia le rem">Stay signed in</label>
</td>
</tr>
<tr>
<td>
</td>
<td align="left">
<input type="submit" class="gaia le button" name="signIn" id="signIn" value="Sign in" />
</td>
</tr>
<tr id="ga-fprow">
<td colspan="2" height="33.0" class="gaia le fpwd" align="center" valign="bottom">
<a href="https://www.blogger.com/forgot.g" target=_top>Can't access your account?</a>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
<input type="hidden" name="asts" id="asts" value="" />
</form>
<script>
var gaia_loginForm;
if (document.getElementById) {
gaia_loginForm = document.getElementById("gaia_loginform");
} else if (window.gaia_loginform) {
gaia_loginForm = window.gaia_loginform;
}
var gaia_emailHasKeypress = false;
if (gaia_loginForm && gaia_loginForm.Email) {
gaia_loginForm.Email.onkeypress = function() {
gaia_emailHasKeypress = true;
}
}
function gaia_setFocus() {
if (gaia_loginForm) {
if (gaia_loginForm.Email && !gaia_loginForm.Email.value) {
gaia_loginForm.Email.focus();
} else if (gaia_loginForm.Passwd && !gaia_emailHasKeypress) {
gaia_loginForm.Passwd.focus();
}
}
}
gaia_setFocus();
</script>
<form id="gaia_universallogin" action="https://www.google.com/accounts/ServiceLoginAuth" method="post" onsubmit="return(gaia_onLoginSubmit());">
<input type="hidden" name="continue" id="continue" value="https://www.blogger.com/loginz?d=http%3A%2F%2Fwww.blogger.com%2Fhome&a=ADD_SERVICE_FLAG" />
<input type="hidden" name="service" id="service" value="blogger" />
<input type="hidden" name="naui" id="naui" value="8" />
<input type="hidden" name="fpui" id="fpui" value="2" />
<input type="hidden" name="skipvpage" id="skipvpage" value="true" />
<input type="hidden" name="rm" id="rm" value="false" />
<input type="hidden" name="dsh" id="dsh" value="-5001523091454835929" />
<input type="hidden" name="ltmpl" id="ltmpl" value="start" />
<input type="hidden" name="alwf" id="alwf" value="true" />
<input type="hidden" name="alinsu" id="alinsu" value="0" />
<input type="hidden" name="ltmpl" id="ltmpl" value="start" />
<input type="hidden" name="ltmpl" id="ltmpl" value="start" />
</form>
</div>


Save it and enjoy..............................
2013, By: Seo Master

seo How To Add A “News Slider” Widget In Your Blogger/Blogspot (Java Script) 2013

Seo Master present to you:

It is a News Slider widget, that runs on JavaScript. What it does is it displays a set of texts which scrolls upwards revealing another set of texts, kind of like a news ticker that behaves more like a chat box.

  • Log in your Blogger .Then go to Design then Layout.
  • Click on ‘Add a Gadget’ option placeholder where you want the news slider to appear.
  • Select ‘HTML/JavaScript
  • Copy and then paste the code below into the ‘Content’ field (you may leave the ‘Title’ field blank)
Copy This Code


<style type="text/css">
#pscroller1{
width: 300px;
height: 80px;
border: 1px solid black;
padding: 5px;
background-color: #efefef;
}
#pscroller2{
width: 350px;
height: 20px;
border: 1px solid black;
padding: 3px;
}
#pscroller2 a{
text-decoration: none;
}
.someclass{ //class to apply to your scroller(s) if desired
}
EXETESTIMONIALS {font-size: 20px; font-style: oblique;}
</style>
<script type="text/javascript">
/*Example message arrays for the two demo scrollers*/
var pausecontent=new Array()
pausecontent[0]='<EXETESTIMONIALS>News Heading:</EXETESTIMONIALS></br><i>Your Latest News...!!!</i></br></br><center align="right"><a href="newsURL">Read More</a></center>'
pausecontent[1]=' <EXETESTIMONIALS>News Heading:</EXETESTIMONIALS></br><i>Your Latest News...!!!</i></br></br><center align="right"><a href="newsURL">Read More</a></center> '
pausecontent[2]=' <EXETESTIMONIALS>News Heading:</EXETESTIMONIALS></br><i>Your Latest News...!!!</i></br></br><center align="right"><a href="newsURL">Read More</a></center> '
</script>
<script type="text/javascript">
/***********************************************
* Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
function pausescroller(content, divId, divClass, delay){
this.content=content //message array content
this.tickerid=divId //ID of ticker div to display information
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is)
this.hiddendivpointer=1 //index of message array for hidden div
document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>')
var scrollerinstance=this
if (window.addEventListener) //run onload in DOM2 browsers
window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
else if (window.attachEvent) //run onload in IE5.5+
window.attachEvent("onload", function(){scrollerinstance.initialize()})
else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec
setTimeout(function(){scrollerinstance.initialize()}, 500)
}
// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------
pausescroller.prototype.initialize=function(){
this.tickerdiv=document.getElementById(this.tickerid)
this.visiblediv=document.getElementById(this.tickerid+"1")
this.hiddendiv=document.getElementById(this.tickerid+"2")
this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv))
//set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)
this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.visibility="visible"
var scrollerinstance=this
document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
if (window.attachEvent) //Clean up loose references in IE
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}
// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------
pausescroller.prototype.animateup=function(){
var scrollerinstance=this
if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
setTimeout(function(){scrollerinstance.animateup()}, 50)
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}
// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------
pausescroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}
pausescroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}
// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------
pausescroller.prototype.setmessage=function(){
var scrollerinstance=this
if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it)
setTimeout(function(){scrollerinstance.setmessage()}, 100)
else{
var i=this.hiddendivpointer
var ceiling=this.content.length
this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
this.animateup()
}
}
pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) //if DOM2
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0
}
</script>
<script type="text/javascript">
//new pausescroller(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds)
new pausescroller(pausecontent, "pscroller1", "someclass", 3000)
document.write("<br />")
new pausescroller(pausecontent2, "pscroller2", "someclass", 3000)
</script>


  • Please change red color in above code
  1. News Heading
  2. Your Latest News…!!!
  3. newsURL

  • 6. Do you want to adjust it’s width ,height, pause time etc. Please change below options (red color )
  1. width – currently set at ‘300px
  2. height – currently set at ‘80px
  3. Pause time – currently set at ‘3000’ (3 seconds)

  • Check the result by clicking on the‘Preview’ button.
  • After conform, save it.
2013, By: Seo Master

seo How To Add Floating Notification Bar In Your Blogger 2013

Seo Master present to you:

 It is great tutorial about floating notification bar for Blogger. This cool feature is very easy to Include in your blog. First simply copy the codes below and paste it in your Blogger and that’s it. You can also customize it.



Log In your Blogger account. Then go to Blogger Dashboard >Template> Edit HTML



Find <body> tag. Copy the codes below and paste it after <body> tag.
Then copy below code and paste it.

Copy This Code


<!-- Notification code start -->
<style type='text/css'>
#ut-sticky
{
background: #7d7e7d; /* Old browsers */
background: -moz-linear-gradient(top, #7d7e7d 6%, #7d7e7d 9%, #0e0e0e 99%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(6%,#7d7e7d), color-stop(9%,#7d7e7d), color-stop(99%,#0e0e0e)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #7d7e7d 6%,#7d7e7d 9%,#0e0e0e 99%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #7d7e7d 6%,#7d7e7d 9%,#0e0e0e 99%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #7d7e7d 6%,#7d7e7d 9%,#0e0e0e 99%); /* IE10+ */
background: linear-gradient(top, #7d7e7d 6%,#7d7e7d 9%,#0e0e0e 99%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=&#39;#7d7e7d&#39;, endColorstr=&#39;#0e0e0e&#39;,GradientType=0 ); /* IE6-9 */
border-bottom:2px solid #999;
color:#fff;
text-align: center;
margin:-12px auto;
padding-bottom:1px;
border-top: 1px solid #333;
height:38px;
font-size:13px;
position:fixed;
vertical-align: baseline; overflow:hidden;
z-index:999;
width:100%;
border-bottom-left-radius:6px;
border-bottom-right-radius:6px;
display:block;
font-weight: bold;
font-family: arial,&quot;Helvetica&quot;;
font-color:#fff;
-moz-box-shadow: 0 2px 4px hsla(0,0%,0%,.35);
-webkit-box-shadow: 0 2px 4px hsla(0,0%,0%,.35);
}
#ut-sticky:hover
{
background-color:#333;background-image:-moz-linear-gradient(top,#555555,#434343);background-image:-ms-linear-gradient(top,#555555,#434343);background-image:-webkit-gradient(linear,0 0,0 100%,from(#555555),to(#434343));background-image:-webkit-linear-gradient(top,#555555,#434343);background-image:-o-linear-gradient(top,#555555,#434343);background-image:linear-gradient(top,#555555,#434343);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#39;#555555&#39;,endColorstr=&#39;#434343&#39;,GradientType=0)
-webkit-transition:all 1.3s ease-in-out;-moz-transition:all 1.3s ease-in-out;-o-transition-duration:all 1.3s ease-in-out;transition:all 1.3s ease-in-out;
-moz-box-shadow: 0 2px 4px hsla(0,0%,0%,.35);
-webkit-box-shadow: 0 2px 4px hsla(0,0%,0%,.35);
}
#ut-button {background:#fff; padding:4px; color:black;text-shadow:0 -1px 0 rgba(255,255,255,0.25);background-color:white}
#ut-sticky p{line-height:5px; font-size:13px; text-align:center; width:95%; float:left;}
#ut-sticky p a{ text-decoration:underline; padding:4px; color:#FFFF33;}
.ut-cross{display:block; position:relative; right:15px; top:4px;float:right;}
.ut-cross a{font-size:18px; font-weight:bold; font-family:&quot;Arial&quot;; color:#FF0000; line-height:30px;}
.ut-cross, a:hover{color:#DDD; text-decoration:none;}
</style>
<div id='ut-sticky'>
<p style='padding-top:17px;'>Welcome To Entertainment<a class='ut-button' href='http://www.entertainer001.tk/2012/06/how-to-add-floating-notification-bar-in.html' target='_blank'>Get this!</a></p>
<div class='ut-cross'><a href='javascript:hide_cross();'>X</a></div>
</div>
<script language='JavaScript'>
function hide_cross() {
crosstbox = document.getElementById(&quot;ut-sticky&quot;);
crosstbox.style.visibility = &#39;hidden&#39;;
}
</script>
<br/><br/>
<br/><br/>
<!-- End of Notification code, info - http://www.entertainer001.blogspot.com -->


Change red color with your message.

Save template.


2013, By: Seo Master

seo How To Add Floating/Sliding Social Website Share Buttons To Your Blogger Blog 2013

Seo Master present to you:


In this post I share a special useful content for you. Do you know how to insert a floating share buttons in your blogger/blog/website. Here i show a widget that include all share buttons. This widget will helps you to make your site popular. Just follow the steps to enable this widget in your blogger/blog/websites.






  • Login into your blogger account.
  • Goto>dashboard>layouts
  • Click on "Add a widget" any where.
  • Then goto html/javascript And enter the below given code



<!-- floating share bar Start www.entertainer001.blogspot.com-->
<style type="text/css">
#pageshare {position:fixed; bottom:15%; margin-left:-71px; float:left; border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;background-color:#fff;padding:0 0 2px 0;z-index:10;}
#pageshare .sbutton {float:left;clear:both;margin:5px 5px 0 5px;}
.fb_share_count_top {width:48px !important;}
.fb_share_count_top, .fb_share_count_inner {-moz-border-radius:3px;-webkit-border-radius:3px;}
.FBConnectButton_Small, .FBConnectButton_RTL_Small {width:49px !important; -moz-border-radius:3px;/*bs-fsmsb*/-webkit-border-radius:3px;}
.FBConnectButton_Small .FBConnectButton_Text {padding:2px 2px 3px !important;-moz-border-radius:3px;-webkit-border-radius:3px;font-size:8px;}
</style>
<div id='pageshare' title="Get this from BloggerSentral.com">
<div class='sbutton' id='fb'>
<a name="fb_share" type="box_count" href="http://www.facebook.com/sharer.php">Share</a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>
</div>
<div class='sbutton' id='rt'>
<script src="http://tweetmeme.com/i/scripts/button.js" type='text/javascript'></script>
</div>
<div class='sbutton' id='su'>
<script src="http://www.stumbleupon.com/hostedbadge.php?s=5"></script>
</div>
<div class='sbutton' id='digg' style='margin-left:3px;width:48px'>
<script src='http://widgets.digg.com/buttons.js' type='text/javascript'></script>
<a class="DiggThisButton DiggMedium"></a>
</div>
<div class='sbutton' id='gplusone'>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<g:plusone size="tall"></g:plusone>
</div>
<div style="clear: both;font-size: 9px;text-align:center;">Get <a href="http://www.dailyblogging.in/2012/04/add-floating-social-media-share-buttons.html">this</a></div>
<!-- floating share bar End www.entertainer001.blogspot.com—>


  • Now click on save.

That's it now open your blog and you will see share bar in left side.
2013, By: Seo Master

seo How To Remove Blogger Attribution Widget (Powered by Blogger) 2013

Seo Master present to you:

The Attribution gadget is the gadget in the footer that says "Powered By Blogger". If you have tried to remove this then you may of noticed this gadget is locked into you blog.



Now i share how to remove Attribution gadget from blogger . Just follow this post.



1. Go to Design--> Edit HTML.
2. Expand your Widget Template.
3. Click Ctrl+F for the browser Find bar to pop up.
4. In the Find bar enter Attribution1 (Ctrl+F)


5. Once you find the attribution code, change “true” on locked to “false” as shown in the image below




6. Save your template.


7. Go back to Design => Page Elements to check your success. The widget lock command has been disabled, you can now remove the attribution widget from your blog.



Now attribution widget (Powered By Blogger) disabled from your blogger .Finally, view your blog and see the changes.



Are you happy?.......................................
2013, By: Seo Master

seo Easy Way To Get More Facebook Likes,Website Hits,Twitter Followers. Etc 2013

Seo Master present to you:

Hai friends , It is a simple trick for increase Facebook like ,Twitter Followers,Website hit etc.


At first you can register following link. Then you get 100 points free.
Join now Click here



Add a website link or URL you want to get more likes , followers and hit.
After adding you get free hits,likes etc automatically. If your balance reduce ,now you get more points from like or hit others page or website.


It is interesting………………….
2013, By: Seo Master

seo Unescape Decoder and Encoder– Online Tool 2013

Seo Master present to you:

Friends, This is a secret tool to hide your content from strangers. It protect your content without loss any data. You can convert text,HTML,JavaScript etc, in to Un escape format. Also you can decode your content with this tool. Just paste your Text,HTML,JavaScript on first box then hit Encode button. Your text will encode like %3C%73%63%72%69%70%74% format. You can decode it easily, Just copy this encoded code second box. then hit on Decode button. Are you happy now enjoy…..








Leave a comment below about this encoder/decoder...... 2013, By: Seo Master

seo Blogger Mouse Cursor Snow Effect Generator – Online Tool 2013

Seo Master present to you:
Friends This is a new tool to make a snow effect on your mouse cursor when we moving mouse. This is advanced tool, I copied this tool from 24work.blogspot.com  You can easily add snow falling effects  without any effort. Just select effect and click on generate button. After that Just click on Add to blogger button or Copy generated code and paste into your blogger HTML/JavaScript edit option. This widget has also preview option . Just check it and enjoy….







Special Thanks to: 24work.blogspot.com


Leave a comment …………… below…………….
2013, By: Seo Master

seo Falling Object Generator For Blogs And Websites - Online Tool 2013

Seo Master present to you:
Friends , This is a tool to make falling object code easily and it help to make different type falling images. It make a html code, You can add it directly in your blogger. After install this widget. You will see a falling object on your website. You can install it with below widget. Use it and enjoy...






Leave a comment.below..............................
2013, By: Seo Master

seo How To Block Adult Website 2013

Seo Master present to you:

Sometimes personal Web sites can be more adult oriented than that. The language on the site might not be something you want your children reading and the pictures on the site may be of things you don't want your kids to see. You want to protect your kids from seeing these pages, maybe you want to protect yourself from seeing these pages too.
Block Adult Websites & Porn Sites on Internet Explorer browser.

  1. Click "Tools"
  2. Click "Internet Options..."
  3. Click on "Content" tab
  4. In the "Content Advisor" section click on "Enable..."
You are now in the Content Advisor. From here you can set your settings.
  • "Ratings" tab - Set rating levels for: language, nudity, sex and violence.
  • "Approved Sites" tab - Name sites that you will allow your children to always view or name sites that you never want your children to view, regardless of the site's rating.
  • "General" tab
    • Allow or disallow your child to see sites that are not rated.
    • Create a password
    • View or modify the rating system


Block Adult Websites & Porn Sites on Firefox

FoxFilter is a personal content filter,that helps block inappropriate content as well as block access to user-specified content and Web sites. it also contain password security option and password recovery option.
FoxFilter has been designed to work with Firefox on Mac, Linux and Windows.



Install FoxFilter : Click here



How to block a website in google chrome
  • Open google Chrome
  • Click in the Wrench logo / Customize and control google chrome.
  • Select settings >Advanced settings> Network > Change proxy Settings

  • Select Privacy > Sites > Per sites privacy Actions

  • Add the Address of the Websites you wish to block and click Block and then Click Ok



There you go, you have Succesfully blocked the website in Chrome.


Blocking Software (Example)
  • We-Blocker - Free. Create different settings for each child.
  • CyberSitter - Rated #1 by PC magazine 2003.
  • KidsNet - Disallows certain types of emails from getting through. Age specific settings.
  • CyberPatrol - Restrict instant messages, email and sites.
  • NetNanny - Monitor and restrict or control your children's Internet viewing.
  • CyberFence 3.0 - CyberFence 3.0 Adult Content Blocking & Monitoring Software. CyberFence does block unwanted websites and videos such as sexuality, violence, and online games and provide a safe Internet environment for your kids

                                            ...........................................................
2013, By: Seo Master

seo Stylish And Advanced Text Generator For Facebook, Myspace, Twitter Etc – Online Tool 2013

Seo Master present to you:
Friends, Now I share a wonderful online tool to make different type stylish texts. This is a funny tool. It help to make 10 different text styles automatically , when you enter a text on text field. It help to post different type of text characters on Facebook,Twitter, Myspace etc. Example for different type text: мαѕтєя нα¢кѕ, ๓ครtєг ђคςкร, ⓜⓐⓢⓣⓔⓡ ⓗⓐ©ⓚⓢ, ᄊム丂イ乇尺 んムcズ丂, MaStEr hAcKs etc. It help to make a wonderful experience to all.  Keep visit master hacks and enjoy…..




Leave a comment below............................ enjoy with Master Hacks..........
2013, By: Seo Master

seo Advanced Online HTML Editor With Preview 2013

Seo Master present to you:

Friends, This  is a new and advanced online tool to edit your HTML code with spot preview. You can edit your CSS, HTML code with this tool. It shows your current Code preview on right side. Just use this online HTML editor and send your feedbacks via comment.

              ONLINE HTML EDITOR

© 2013, All Rights Reserved. HTML Editor by Master Hacks

 

 

Leave a comment below……………. about this online HTML editor……………

 

2013, By: Seo Master

seo Simple And Stylish 3d Button For Blogger 2013

Seo Master present to you:

Friends, This is a simple post to make a simple 3D button in blogger. It shows blue color outline and white rectangle space inside. You can change or edit inside text with your own . It is mainly used for some special notification in your post OR for live demo OR for new kind of special text OR also can use it for intention. It is very easy to install into your blogger. Keep follow below instruction and install it.

LIVE DEMO



Thank You

 



Login to Blogger dashboard

  • Go to Posting option.

 

  • Click on Edit HTML.

 

  • Paste below codes in Edit HTML area where you write your post.

 

 

<div style="background-color: white" align="center"><b><span style="background-color: white"><span style="font-family: verdana,sans-serif"><span style="border-bottom: rgb(11,83,148) 10px solid; border-left: rgb(72,161,250) 10px solid; padding-bottom: 6px; padding-left: 6px; padding-right: 6px; border-top: rgb(11,83,148) 10px solid; border-right: rgb(72,161,250) 10px solid; padding-top: 6px"><b><span style="font-family: verdana,sans-serif"><span style="font-size: large"><span style="color: blue"><span style="font-size: small"> YOUR-TEXT-HERE</span> </span></span></span></b></span></span></span></b></div>

 

Change RED color with your text. Also you can change text size ,family, alignment etc.

 

  • Publish your post or Preview .

 

 

Leave a comment below about this button…………………………

2013, By: Seo Master

seo 3D Cube Popular Post Widget With Rotating Effect 2013

Seo Master present to you:
Hi, Everyone now i share a beautiful popular post cube widget with 3D rotating effect.  This widget work with all blogger template. You can add this on your blogger. Just follow below instruction.. Then try it to add your template…
3d cube popular post widget with rotating effect -(www.www.matrixar.com)

Login to Blogger Dashboard
  • Select Layout option from dashboard side menu.

  • Click “Add Gadget” .

  • Choose “Popular Posts” from given list (If you already have this gadget skip this step).

  • After that hit again on “Add Gadget” and select “HTML/Javascript” option from list.

  • Copy below code and paste it on HTML/Javascript  box.


<style type="text/css"> .cube { width: 200px; height: 200px;} a img { border: none; } #linksCube img { width: 100%; height: 100%; } </style><br /> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script><br /> <script type="text/javascript" src="http://accordion-for-blogger.googlecode.com/svn/trunk/jqueryimagecube.js"></script><br /> <script type="text/javascript" charset="utf-8"> $(function () {     $('.popular-posts ul').abupopularcube(); });  </script><br /> <script type="text/javascript" src="http://accordion-for-blogger.googlecode.com/svn/trunk/popularcube.js"></script>

  • Save it and preview.





Leave a comment…… below…………………. If this widget is not working………..
2013, By: Seo Master

seo How To Change Scrollbar Color In Browser Using CSS Code - Blogger 2013

Seo Master present to you:

Friends, Now i share a trick for blog users. This is a fantastic trick to change your browser scrollbar color, when we open our blog. We are using CSS code to make this colorful scrollbar. This is very simple to add to your template. You can change the value of color with color code or RGB value. Apply this trick to your blogger and enjoy… Keep in touch with master hacks….

Change scrollbar color in browser with CSS code-Blogger (www.www.matrixar.com)

 

Log in to your Blogger account.

  • Go to your blog dashboard.

 

  • Hit on Template option.

 

  • Find  ]]></b:skin> tag.

 

  • Copy and paste below code before ]]></b:skin> tag.

 

 

/* Webkit override Scrollbar with CSS3 */
::-webkit-scrollbar {
width: 13px; height:8px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.3);
background:#9b9999;
}
::-webkit-scrollbar-thumb {
background: rgba(29,122,231,0.8);
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(117,186,101,0.4);


You can change scrollbar color. For that change highlighted RED color and rgba color values with your color value.

 

  • Save your Templates.

 

LIVE DEMO

As you can see, once there's enough text in this box, the box will grow scroll bars... that's why we call it a scroll box! You could also place an image into the scroll box.Friends, Now i share a trick for blog users. This is a fantastic trick to change your browser scrollbar color, when we open our blog. We are using CSS code to make this colorful scrollbar. This is very simple to add to your template. You can change the value of color with color code or RGB value. Apply this trick to your blogger and enjoy… Keep in touch with master hacks….

 


Note: This trick works only in Mozilla Firefox, Google Chrome, IE9+ browsers




Leave a comment………………. below…….Thank you for your visit…..

 

2013, By: Seo Master
Powered by Blogger.