WHAT'S NEW?
Loading...

HOW TO MAKE YOUR BLOGGER ‘ABOUT ME’ PROFILE PICTURE ROUND


The example is a friend and recent blog design client of mine, Shades of Teebee. I created the template from scratch, including the customised ‘About Me’ widget. It’s easy to customise pretty much any of the widgets in Blogger with a bit of simple CSS coding. Let’s get started!
Step 1. Go to your blogger dashboard, click ‘Template’, then the ‘Edit HTML’ button. Find where it says <b:skin>…</b:skin> and click the arrow next to it to expand the template code.
Step 2. Using Ctrl+F (Cmd+F on a Mac), find </b:skin>. A couple of lines above it, paste the following code:
.widget.Profile .widget-content>a img.profile-img {
min-width: 80px!important;
min-height: 80px!important;
max-width: 80px;
border-radius: 40px;

}
Change the min-width, min-height and max-width number values to change the size of the image.
The border-radius property is what makes the picture round. You can change this value to get different effects, like rounded corners instead of a circle. The higher the number (up to half the image width/height), the more rounded it gets. Try it out!
Step 3. If you want to center the profile photo and text underneath (like in the example above), add the following code underneath:
.widget.Profile .widget-content>a img.profile-img {
float: center;
}
.widget.Profile {
text-align: center;
float: center;
margin: auto;
}
Step 4. Click the “Save Template” button and enjoy your new round profile picture!

Add 6 Custom Search boxes to your blogger.

There's an unspoken rule in the world of web design that says that every website have a search box. You can, and should, design a custom search gadget to Blogger that contributes to the theme of your site while providing some key benefits to both your customers and you.

Benefits to Customers

Search boxes not only help to increase your website's design usability, but they're very convenient to site visitors and regulars. For those that have been to your site before, they know what they want and they want it now. These are the impatient people who don't feel like wading through different links. If you don't accommodate this problem you might risk losing those readers.
For newer customers who want to get a feel for your site before investing any more time, it gives them the chance to look for their interests on both eCommerce sites and blog sites.

Benefits To You

Adding a custom search gadget to Blogger perhaps best benefit eCommerce sites because it's an industry that inherently offers a lot of very specific products. For instance, if you sold clothing apparel and someone was only look for shirts, the search would result would only bring up shirts so that person can look through everything in one place.

Bloggers might not have products to offer, but adding a custom search gadget to Blogger can help site analytics and SEO. Google Analytics offers a tool that will track all the searches performed by your search bar, so that you can use this data when improving your keyword usage and content choices. Google web crawlers and search engine bots will also test out phrases in these boxes on the rare occasion to make sure that all your content leads to somewhere creates a closed loop.

Add Your Own Custom Search Gadget To Blogger Just because you should have a search bar doesn't mean you you're restricted to what time. Your site's search bar should be easy to find and readily available whenever someone needs it, but other than that the look of the design is up to you. If you want to add a custom search gadget to Blogger, here are 6 stylish choices to pick from. Just copy the code below the search box that you want to add and follow the steps below:


 <style>
#searchbox {
    background: #d8d8d8;
    border: 4px solid #e8e8e8;
    padding: 20px 10px;
    width: 250px;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

#searchbox input {
    outline: none;
}

#searchbox input[type="text"] {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5ONprhYPi_MDBKJWwiWTYMmVAsM9labyoHhZX2RFFsbg8a49DBJluMxom4xmEe3D6RYZb1UxkRXx0l_yjVtU23HZm0kQ296fFRLAFJsuUP0tcT_Sl7WtLsQPvFg29EV9qk4st3M0Ct7fr/s1600/search-dark.png) no-repeat 10px 6px #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    font: bold 12px Arial,Helvetica,Sans-serif;
    color: #bebebe;
    width: 55%;
    padding: 8px 15px 8px 30px;
}

#button-submit {
    background: #6A6F75;
    border-width: 0px;
    padding: 9px 0px;
    width: 23%;
    cursor: pointer;
    font: bold 12px Arial, Helvetica;
    color: #fff;
    text-shadow: 0 1px 0 #555;
}

#button-submit:hover {
    background: #4f5356;
}

#button-submit:active {
    background: #5b5d60;
    outline: none;
}

#button-submit::-moz-focus-inner {
    border: 0;
}
</style>

<form id="searchbox" method="get" action="/search">
<input name="q" type="text" size="15" placeholder="Type here..." />
<input id="button-submit" type="submit" value="Search" />
</form>
_________________________________________________________________________________

<style>

#searchbox {
width: 240px;
}
#searchbox input {
    outline: none;
}
input:focus::-webkit-input-placeholder {
    color: transparent;
}
input:focus:-moz-placeholder {
    color: transparent;
}
input:focus::-moz-placeholder {
    color: transparent;
}
#searchbox input[type="text"] {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5ONprhYPi_MDBKJWwiWTYMmVAsM9labyoHhZX2RFFsbg8a49DBJluMxom4xmEe3D6RYZb1UxkRXx0l_yjVtU23HZm0kQ296fFRLAFJsuUP0tcT_Sl7WtLsQPvFg29EV9qk4st3M0Ct7fr/s1600/search-dark.png) no-repeat 10px 13px #f2f2f2;
border: 2px solid #f2f2f2;
    font: bold 12px Arial,Helvetica,Sans-serif;
    color: #6A6F75;
    width: 160px;
    padding: 14px 17px 12px 30px;
    -webkit-border-radius: 5px 0px 0px 5px;
    -moz-border-radius: 5px 0px 0px 5px;
    border-radius: 5px 0px 0px 5px;
    text-shadow: 0 2px 3px #fff;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}
#searchbox input[type="text"]:focus {
background: #f7f7f7;
border: 2px solid #f7f7f7;
width: 200px;
padding-left: 10px;
}



#button-submit{
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZ6pPFNevjv7XOMdH-cn1IxHGHsGp7_er3ogLAvh1Ua257j7apDkCz2jafNKrHT5Zol8NNAhTpzZq8rTcemzFOcElGBcREfUQgrcTinxzElcE4QzHAGBp23_3L5BNfIDQZyNZSTKU6hup3/s1600/slider-arrow-right.png) no-repeat;
margin-left: -40px;
border-width: 0px;
width: 43px;
height: 45px;
}
</style>



<form id="searchbox" method="get" action="/search" autocomplete="off">
<input name="q" type="text" size="15" placeholder="Enter keywords here..." />
<input id="button-submit" type="submit" value=" "/>
</form>

_______________________________________________________________________________________

<style>
#searchbox {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0OxmJCsVHL3k1GFSQ6AjCCJlbKjjbzUVmDl-OgXP3-pF3EIAooy_8UJ6mwBQF5_nfEZlfICn4mw6g7Egg7WonxmVkOU-LJYC6ESBWvxpIOUmMNuuI5QTtNe15QCby5t1vSimJTpwldtZg/s1600/searchbar.png) no-repeat;
    width: 208px;
    height: 29px;
}
input:focus::-webkit-input-placeholder {
    color: transparent;
}
input:focus:-moz-placeholder {
    color: transparent;
}
input:focus::-moz-placeholder {
    color: transparent;
}
#searchbox input {
    outline: none;
}
#searchbox input[type="text"] {
    background: transparent;
    margin: 3px 0px 0px 20px;
    padding: 5px 0px 5px 0px;
    border-width: 0px;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 12px;
    color: #828282;
    width: 70%;
    display: inline-table;
    vertical-align: top;
}
#button-submit {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_Nt3aQCKt6iOPHq9B_f7kxhpnNlpu1y2c9TRtdiUG8G09950D1L1KgLQbRqoSIhPLe0jBakMLzSjNYnMu-GMvNjTRHHDMQmmlFcyD2BiaR36wv7QfwFLx0d6ucTtwZ3NHzHk0l2gJKGgL/s1600/magnifier.png) no-repeat;
    border-width: 0px;
    cursor: pointer;
    margin-left: 10px;
    margin-top: 4px;
    width: 21px;
    height: 22px;
}
#button-submit:hover {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTticHOZcgpLIxNsEXi-S60bT0VeRQCWJVyR2j0RNJFkYuCIckIr4GGY6RheO3mXxE_1-UUuSmb5J4hlt_hc1URj16O-De_2Zn8ExnsVVjGaTm_yQNrUcO0IyHErV5z5yHmz97FZJsz0Ur/s1600/magnifier-hover.png) no-repeat;
}
#button-submit:active {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTticHOZcgpLIxNsEXi-S60bT0VeRQCWJVyR2j0RNJFkYuCIckIr4GGY6RheO3mXxE_1-UUuSmb5J4hlt_hc1URj16O-De_2Zn8ExnsVVjGaTm_yQNrUcO0IyHErV5z5yHmz97FZJsz0Ur/s1600/magnifier-hover.png) no-repeat;
    outline: none;
}
#button-submit::-moz-focus-inner {
    border: 0;
}
</style>

<form id="searchbox" method="get" action="/search" autocomplete="off">
    <input name="q" type="text" size="15" placeholder="search..." />
    <input id="button-submit" type="submit" value="" />
</form>
________________________________________________________________________________________


 <style>
#searchbox {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjAzPaygCvU_8i120joUeGXsUn0qDxzSEnc0mZLjvhl7vJ7sAagcCtfzzSrHBBAn_SdiasBEbavrk6QCR2BvUflbyhWKyBod7FuPnzo7zBn4m9wZmMGqAKaOQvRQIksCBweoDreSFZD-Q1H/s1600/search-box.png) no-repeat;
    height: 27px;
    width: 202px;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

#searchbox input {
    outline: none;
}

#searchbox input[type="text"] {
    background: transparent;
    margin: 0px 0px 0px 12px;
    padding: 5px 0px 5px 0px;
    border-width: 0px;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 12px;
    font-style: italic;
    width: 77%;
    color: #828282;
    display: inline-table;
    vertical-align: top;
}

#button-submit {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjvXrRENsEciKHddZVaz97vc4UFsqqhaKRxCLFg9_IRsZdT6myxrCm_jPFiWV2JlFnNEmurqrA9jzIkIJLYf_bQ0MybaWb7c9-6UYrHLXdZL4D338EYjjkzOi2UOAyCN0xaZREatGtVf0zH/s1600/search-button.png) no-repeat;
    border-width: 0px;
    cursor: pointer;
    width: 30px;
    height: 25px;
}

#button-submit:hover {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjzkWjlwJrfoboMkfyZO0L-ahJFW_JKsRypKXxdwLi3aM6ubBBYZ2BXGNMGkiAt3akT1H48TQXAoRDyXcZ7N8FSr-uqAdBzwKNK5ThJEvoTlj_qGfUCb98Y-Gk0uGaqsYNZHfSrJmhnFeCB/s1600/search-button-hover.png) no-repeat;
}

#button-submit::-moz-focus-inner {
    border: 0;
}
</style>

<form id="searchbox" method="get" action="/search" autocomplete="off">
<input name="q" type="text" size="15" placeholder="search..." />
<input id="button-submit" type="submit" value="" />
</form>
_______________________________________________________________________________________

<style>
#searchbox {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDWFjQOISNw_Lp1udXt3R8dcV3XY_tvWThGvfGB94c5AIMtConEKvwKF3iRIsWV42354hcQGG4EmupwE6coGH3FZKxL7ci2UrO5YzQQvHqqhBLWdABMaKmEuR6jX3Y5fTbBWa3vjDJOsKI/s1600/search-box1.png) no-repeat;
    width: 250px;
    height: 65px;
}

input:focus::-webkit-input-placeholder {
color: transparent;
}

input:focus:-moz-placeholder {
color: transparent;
}

input:focus::-moz-placeholder {
color: transparent;
}

#searchbox input {
    outline: none;
}

#searchbox input[type="text"] {
    background: transparent;
    padding: 5px 0px 5px 20px;
    margin: 10px 15px 0px 0px;
    border-width: 0px;
    font-family: "Brush Script MT", cursive;
    font-size: 12px;
    color: #595959;
    width: 65%;
    font-weight: bold;
    display: inline-table;
    vertical-align: top;
}

#button-submit {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgGzPwDMzoQ54K_iIi7kkJsJhfbo61FmRUkDcwXPDuiTGP-e-2Fs_EQLLmG-LU42Pfj81Va0fcyUgS82QQtpWVgHO8Gl6d59pFgIpgOiQ_Or9dbwrcIx_Fy9WqCT0DgIzudUdB_ykl0XBHm/s1600/magnifier.png) no-repeat;
    border-width: 0px;
    cursor: pointer;
    margin-top: 10px;
    width: 19px;
    height: 25px;
}

#button-submit:hover {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3y3RgufjBdn3JyASTdGmSpEmRZlqczlD8EorjbGbq3hx34BgSbcFiVUpKjDcYISf30r7PxkjQwjFXeeHgBNhP2S8vHZB_eIVVkVUAMWKtkwzprUmiX8MbmQUyAFM6TB96PqYl3D3n9VA0/s1600/magnifier-hover.png) no-repeat;
}

#button-submit:active {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3y3RgufjBdn3JyASTdGmSpEmRZlqczlD8EorjbGbq3hx34BgSbcFiVUpKjDcYISf30r7PxkjQwjFXeeHgBNhP2S8vHZB_eIVVkVUAMWKtkwzprUmiX8MbmQUyAFM6TB96PqYl3D3n9VA0/s1600/magnifier-hover.png) no-repeat;
    outline: none;
}

#button-submit::-moz-focus-inner {
    border: 0;
}
</style>

<form id="searchbox" method="get" action="/search" autocomplete="off">
    <input class="textarea" name="q" type="text" size="15" placeholder="Search here..." />
    <input id="button-submit" type="submit" value="" />
</form>
_________________________________________________________________________________________

<style>
#searchbox {
width: 280px;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJLjgw2Re_BSK3tf-sup1WUNdj4-U3C7A18DwtiVQrAFSlZKrcR5qKpAMB_PPfzulufSVjdDY4uG3q9TzN0VBwiF3t43PoCFMVnybnl4K8EzBjuNio885oTKcrCOdKn_Shi2zWXzIMSPYB/s1600/search-box.png) no-repeat;
}

#searchbox input {
    outline: none;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}
#searchbox input[type="text"] {
background: transparent;
border: 0px;
font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
font-size: 14px;
    color: #f2f2f2 !important;
    padding: 10px 35px 10px 20px;
    width: 220px;
}
#searchbox input[type="text"]:focus {
color: #fff;
}

#button-submit{
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgfy1Nl40-WEDDrhpOoEOmXgKeXestq6S8PTwkCy8D1gHAKpltAnvmiKbrmGU7d3AAOw9EdumcxhDV8JyNyIisPpFbN0im5U8dCq3k0GlaFy8BH49y708ln0qaTorCLLg1TQu7LEl_VWkkC/s1600/search-icon.png) no-repeat;
margin-left: -40px;
border-width: 0px;
width: 40px;
height: 50px;
}

#button-submit:hover {
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhuGEV4U4JMo5yatuh-l_El38H7q1aBRAE76m5jgmSCmF2kLy1nBFUCvqVvPEQYYJCIP_cU1Ncv7j7N7PAmtZzb8KLdpWUJYJZoAPwZcRi83nvAcpO-Gq9JAVtzSkol2vy6CyE0o65OfPuk/s1600/search-icon-hover.png);
}
</style>

<form id="searchbox" method="get" action="/search" autocomplete="off">
<input name="q" type="text" size="15" placeholder="Enter keywords here..." />
<input id="button-submit" type="submit" value=" "/>
</form>
______________________________________________________________________________________

STEPS : HOW TO ADD CUSTOM SEARCH BOX TO BLOGGER

STEP 1: Log in to your Blogger Account, Then goto LAYOUT > Click on "Add Gadget" link on the left side.
STEP 2: Choose HTML/JAVASCRIPT from the Pop-up window. Press the code of SEARCH BOX inside the empty box.
STEP 3: Press SAVE.