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

Seo Master present to you:
Do you want to make your blogger more beautiful. Now i share a trick to customize attractive external link buttons for your blogger. Animated mouse hover effect also include this buttons. You can select which button you want to install in your blogger. This button works with both CSS and HTML code. This CSS contain all buttons property and only HTML code can show  it on your site. if you want to add this buttons in to your blogger. Keep read this post and enjoy…


Log in to your Blogger account
  • Select on Template Option.

  • Click on Edit HTML .

  • Find (CTRL+F)  ]]></b:skin> tag.

  • Copy and paste CSS code above ]]></b:skin> tag.

  • Copy and paste HTML code, where you want to see your image. ( Replace highlighted RED color with your Link and Text )


CSS Code



.button{
    font:15px Calibri, Arial, sans-serif;
    /* A semi-transparent text shadow */
    text-shadow:1px 1px 0 rgba(255,255,255,0.4);
    /* Overriding the default underline styling of the links */
    text-decoration:none !important;
    white-space:nowrap;
    display:inline-block;
    vertical-align:baseline;
    position:relative;
    cursor:pointer;
    padding:10px 20px;
    background-repeat:no-repeat;
    /* The following two rules are fallbacks, in case
       the browser does not support multiple backgrounds. */
    background-position:bottom left;
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png');
    /* Multiple backgrounds version. The background images
       are defined individually in color classes */
    background-position:bottom left, top right, 0 0, 0 0;
    background-clip:border-box;
    /* Applying a default border raidus of 8px */
    -moz-border-radius:8px;
    -webkit-border-radius:8px;
    border-radius:8px;
    /* A 1px highlight inside of the button */
    -moz-box-shadow:0 0 1px #fff inset;
    -webkit-box-shadow:0 0 1px #fff inset;
    box-shadow:0 0 1px #fff inset;
    /* Animating the background positions with CSS3 */
    /* Currently works only in Safari/Chrome */
    -webkit-transition:background-position 1s;
    -moz-transition:background-position 1s;
    transition:background-position 1s;
}

.button:hover{
    /* The first rule is a fallback, in case the browser
       does not support multiple backgrounds
    */
    background-position:top left;
    background-position:top left, bottom right, 0 0, 0 0;
}

.button:active{
    /* Moving the button 1px to the bottom when clicked */
    bottom:-1px;
}

/* The three buttons sizes */
.button.big        { font-size:30px;}
.button.medium    { font-size:18px;}
.button.small    { font-size:13px;}

/* A more rounded button */
.button.rounded{
    -moz-border-radius:4em;
    -webkit-border-radius:4em;
    border-radius:4em;
}

/* Defining four button colors */
/* BlueButton */
.blue.button{
    color:#0f4b6d !important;
    border:1px solid #84acc3 !important;
    /* A fallback background color */
    background-color: #48b5f2;
    /* Specifying a version with gradients according to */
    background-image:    url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'),
                        -moz-radial-gradient(    center bottom, circle,
                                                rgba(89,208,244,1) 0,rgba(89,208,244,0) 100px),
                        -moz-linear-gradient(#4fbbf7, #3faeeb);
    background-image:    url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'),
                        -webkit-gradient(    radial, 50% 100%, 0, 50% 100%, 100,
                                            from(rgba(89,208,244,1)), to(rgba(89,208,244,0))),
                        -webkit-gradient(linear, 0% 0%, 0% 100%, from(#4fbbf7), to(#3faeeb));
}

.blue.button:hover{
    background-color:#63c7fe;
    background-image:    url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'),
                        -moz-radial-gradient(    center bottom, circle,
                                                rgba(109,217,250,1) 0,rgba(109,217,250,0) 100px),
                        -moz-linear-gradient(#63c7fe, #58bef7);
    background-image:    url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'),
                        -webkit-gradient(    radial, 50% 100%, 0, 50% 100%, 100,
                                            from(rgba(109,217,250,1)), to(rgba(109,217,250,0))),
                        -webkit-gradient(linear, 0% 0%, 0% 100%, from(#63c7fe), to(#58bef7));
}

/* Green Button */
.green.button{
    color:#345903 !important;
    border:1px solid #96a37b !important;   
    background-color: #79be1e;
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), -moz-radial-gradient(center bottom, circle, rgba(162,211,30,1) 0,rgba(162,211,30,0) 100px),-moz-linear-gradient(#82cc27, #74b317);
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(162,211,30,1)), to(rgba(162,211,30,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#82cc27), to(#74b317));
}

.green.button:hover{
    background-color:#89d228;
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), -moz-radial-gradient(center bottom, circle, rgba(183,229,45,1) 0,rgba(183,229,45,0) 100px),-moz-linear-gradient(#90de31, #7fc01e);
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(183,229,45,1)), to(rgba(183,229,45,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#90de31), to(#7fc01e));
}

/* Orange Button */
.orange.button{
    color:#693e0a !important;
    border:1px solid #bea280 !important;   
    background-color: #e38d27;
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), -moz-radial-gradient(center bottom, circle, rgba(232,189,45,1) 0,rgba(232,189,45,0) 100px),-moz-linear-gradient(#f1982f, #d4821f);
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(232,189,45,1)), to(rgba(232,189,45,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#f1982f), to(#d4821f));
}

.orange.button:hover{
    background-color:#ec9732;
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), -moz-radial-gradient(center bottom, circle, rgba(241,192,52,1) 0,rgba(241,192,52,0) 100px),-moz-linear-gradient(#f9a746, #e18f2b);
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(241,192,52,1)), to(rgba(241,192,52,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9a746), to(#e18f2b));
}

.gray.button{
    color:#525252 !important;
    border:1px solid #a5a5a5 !important;   
    background-color: #a9adb1;
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), -moz-radial-gradient(center bottom, circle, rgba(197,199,202,1) 0,rgba(197,199,202,0) 100px),-moz-linear-gradient(#c5c7ca, #92989c);
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(197,199,202,1)), to(rgba(197,199,202,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#c5c7ca), to(#92989c));
}

.gray.button:hover{
    background-color:#b6bbc0;
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), -moz-radial-gradient(center bottom, circle, rgba(202,205,208,1) 0,rgba(202,205,208,0) 100px),-moz-linear-gradient(#d1d3d6, #9fa5a9);
    background-image:url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), url('http://www.matrixar.com/-sA5-EsiGIx8/T0j5R9D0acI/AAAAAAAAADY/hPDrj02PVa4/s1600/button_bg.png'), -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(202,205,208,1)), to(rgba(202,205,208,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#d1d3d6), to(#9fa5a9));
}


HTML Codes


Big Buttons


Blue Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button big blue">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text

Green Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button big green">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text

Orange Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button big orange">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text

Gray Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button big gray">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text


Medium Button


Blue Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button blue medium">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text

Green Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button green medium">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text

Orange Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button orange medium">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text

Gray Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button gray medium">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text


Small Button


Blue Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button small blue">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text
 


Green Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button small green">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text



Orange Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button small orange">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text



Gray Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button small gray">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text


Small Rounded Buttons



Blue Button


Live-Demo

<a href="YOUR-LINK-HERE" class="button small blue rounded">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text


Green Button


Live-Demo

<a href="YOUR-LINK-HERE" class="button small green rounded">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text


Orange Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button small orange rounded">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text



Gray Button

Live-Demo

<a href="YOUR-LINK-HERE" class="button small gray rounded">YOUR-TEXT-HERE</a>

Replace highlighted RED color with your Link and Text




  • Save it…






Are you happy with this post… leave a comment below………..
2013, By: Seo Master
Seo Master present to you:

Always we are try to make our blog become more good and attractive. Its helps reader  mind very happy and  help to reader always remember about your blog. Now i share some buttons with mouse hover effects to your blogger. When we are include an external link like “LIVE DEMO” etc, in your blogger, this button can make some special attraction. You can add this on your blogger. It has two different parts CSS part and HTML part . Read carefully and add it.

 

Log in to your Blogger account

  • Select on Template Option.

 

  • Click on Edit HTML .

 

  • Find (CTRL+F)  ]]></b:skin> tag.

 

  • Copy and paste CSS code above ]]></b:skin> tag.

 

  • Copy and paste HTML code, where you want to see your image. ( Replace highlighted RED color with your Link and Text )

 

CSS Code

 

.MH{ background: rgba(0, 0, 0, .08); display: inline-block; padding: 5px; border-radius: 30px; -moz-border-radius: 30px; -webkit-border-radius: 30px; }


.MH a { color: #fff; border: 1px solid rgba(0, 0, 0, .3); display: inline-block; padding: .6em 1.2em; position: relative; text-decoration: none; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); border-radius: 30px; -moz-border-radius: 30px; -webkit-border-radius: 30px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4); -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4); }


.MH a.red { background: #c60000; background: linear-gradient(top, #c60000 0%, #b20000 100%); background: -moz-linear-gradient(top, #c60000 0%, #b20000 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c60000), color-stop(100%, #b20000)); background: -webkit-linear-gradient(top, #c60000 0%, #b20000 100%); }


.MH a.orange { background: #f99015; background: linear-gradient(top, #f99015 0%, #f76c0f 100%); background: -moz-linear-gradient(top, #f99015 0%, #f76c0f 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f99015), color-stop(100%,#f76c0f)); background: -webkit-linear-gradient(top, #f99015 0%,#f76c0f 100%); }


.MH a.green { background: #30a146; background: linear-gradient(top, #30a146 0%, #249334 100%); background: -moz-linear-gradient(top, #30a146 0%, #249334 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #30a146), color-stop(100%, #249334)); background: -webkit-linear-gradient(top, #30a146 0%, #249334 100%); }


.MH a.blue { background: #16a4c8; background: linear-gradient(top, #16a4c8 0%, #1086b6 100%); background: -moz-linear-gradient(top, #16a4c8 0%, #1086b6 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #16a4c8), color-stop(100%, #1086b6)); background: -webkit-linear-gradient(top, #16a4c8 0%, #1086b6 100%); }


.MH a.gray { background: #c2c2c2; background: linear-gradient(top, #c2c2c2 0%, #aeaeae 100%); background: -moz-linear-gradient(top, #c2c2c2 0%, #aeaeae 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c2c2c2), color-stop(100%, #aeaeae)); background: -webkit-linear-gradient(top, #c2c2c2 0%, #aeaeae 100%); }


.MH a.dark { background: #464646; background: linear-gradient(top, #464646 0%, #343434 100%); background: -moz-linear-gradient(top, #464646 0%, #343434 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #464646), color-stop(100%, #343434)); background: -webkit-linear-gradient(top, #464646 0%, #343434 100%); }


.MH a:hover {
-moz-transform:rotate(-10deg);
-webkit-transform:rotate(-10deg);
-o-transform:rotate(-10deg);
-ms-transform:rotate(-10deg);
transform:rotate(-10deg);
}

 

HTML Codes

 

Blue Button:

 

Live Demo

 

<span class="MH"><a class="blue" href="YOUR-LINK-HERE"> YOUR-TEXT-HERE </a></span>

 

Replace highlighted RED color with your Link and Text

 

Orange Button:

 

Live Demo

 

<span class="MH"><a class="orange" href="YOUR-LINK-HERE">  YOUR-TEXT-HERE </a></span>

 

Replace highlighted RED color with your Link and Text

 

Dark Button:

 

Live Demo

 

<span class="MH"><a class="dark" href="YOUR-LINK-HERE"> YOUR-TEXT-HERE </a></span>

 

Replace highlighted RED color with your Link and Text

 

Gray Button:

 

Live Demo

 

<span class="MH"><a class="gray" href="YOUR-LINK-HERE">  YOUR-TEXT-HERE </a></span>

 

Replace highlighted RED color with your Link and Text

 

Red Button:

 

Live Demo

 

<span class="MH"><a class="red" href="YOUR-LINK-HERE">  YOUR-TEXT-HERE </a></span>

 

Replace highlighted RED color with your Link and Text

 

Green Button:

 

Live Demo

 

<span class="MH"><a class="green" href="YOUR-LINK-HERE">  YOUR-TEXT-HERE </a></span>

 

Replace highlighted RED color with your Link and Text

 

 

  • Save it.

 

 

Are you happy.???…… Leave a commnet if it is not working on your blogger…

2013, By: Seo Master
Seo Master present to you:
2013, By: Seo Master
Powered by Blogger.