Showing posts with label Tutorials. Show all posts
Showing posts with label Tutorials. Show all posts

Add An Animated Search Capsule To Blogger

Posted by OWL THEMES On Wednesday, April 25, 2012 0 comments

Hey there guys, I guess this is my first 'how to' guide for bloggers which should be easy to follow and implement. You might have seen the Twenty Eleven theme released by Wordpress during it's third iteration release. You might also have noticed a sweet sliding search box which animatedly expands on being clicked upon and contracts back when moused out. Therefore we can design a similar but more gorgeous search box and add it quite easily to blogspot oriented blogs. 

1. We're gonna design a not so complicated input field in an elliptical shape which retracts a bit and expands on being focused upon while on being blurred it widens just a little bit and comes back to its original state. You can check out how it works in this blog's sidebar.

2. Don't worry, there's no actual designing involved using Photoshop but we shall achieve this using HTML, CSS3 and jQuery only. Let's start with the basic HTML markup.
<form method="get" action="/search" id="search">
     <input name="q" type="text" size="40" class="search1" value="Search..." />
</form>
We've added a simple input box with no button because you'll expect the searcher to hit enter and get their results. Note that we've also declared a class named search1 to which we'll later add CSS.
#search input[type="text"] {
    background: url(http://1.bp.blogspot.com/-hJ8G7WLl1U8/T2xgdl1jK9I/AAAAAAAAAIQ/WBsH0YmWTVE/s1600/search-white.png) no-repeat 10px 6px #fcfcfc;
    border: 1px solid #d1d1d1;
    font-size: 14px;
    color: #bebebe;
    width: 150px;
    padding: 6px 15px 6px 35px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    outline: none;
    }
  • There's a small magnifying glass icon depicting the search action with a light grey background.
  • A thin border to add a slight contrast.
  • Note that we've specified a width of 150px which shall vary on focus & blur.
  • Now, the CSS3 part includes a border radius of 25px (-moz and -webkit suffixes are for Firefox and Chrome respectively).
  • And a subtle text shadow of just 0.1 opacity.
  • Plus a slight box shadow to add some flair.
  • Lastly, removing the ugly yellow/blue outline on focusing the search input.
And now for the jQuery magic. For the ones now knowing, jQuery is a Javascript library which includes inbuilt classes and functions which we can directly call with the hellp of CSS selectors to avoid writing raw vanilla JavaScript.

If you don't have the jQuery library linked to your blog, you need to copy the above link before </head>  and include the below code.
$(document).ready(function(){

$('.search1').focus(function(){
 $(this).stop().animate({width:'140px'}).animate({width:'200px'}, 200);
});

$('.search1').blur(function(){
 $(this).stop().animate({width:'210px'}).animate({width:'150px'}, 200);
}); 

});
The above jQuery code is quite self explanatory, when the search box is focused (clicked in) it goes in and out and on being blurred (clicked out) it goes a little bit out and comes back to its normal state. You need to add this code exactly above </head>.
And we're done, the good news is you don't need to add the HTML and CSS3 in your template directly. In the 'layout', go to the sidebar and 'add a widget'. Now select the HTML/JAVASCRIPT widget and paste the below final code. Save it and voilla.
<style type="text/css">

#search input[type="text"] {
    background: url(http://1.bp.blogspot.com/-hJ8G7WLl1U8/T2xgdl1jK9I/AAAAAAAAAIQ/WBsH0YmWTVE/s1600/search-white.png) no-repeat 10px 6px #fcfcfc;
    border: 1px solid #d1d1d1;
    font-family: 'Ropa Sans', sans-serif;
    font-size: 14px;
    color: #bebebe;
    width: 150px;
    padding: 6px 15px 6px 35px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    outline: none;
    }

</style>

<form method="get" action="/search" id="search">
     <input name="q" type="text" size="40" class="search1" value="Search..." />
</form> 
Alright, I hope you've successfully incorporated the search capsule in your blog. However, if you face any problems, shoot your queries in the comments.
READ MORE

Drop Down Menu

Posted by OWL THEMES On 0 comments

A drop down menu is needed when you have too much content on your blog or you love keeping things organized. To add a drop down menu to your blogger blogs do this:
  1. Go To Blogger > Design > Page Elements
  2. Select a HTML/JavaScript Widget just under the header and paste the following code inside it,


Copy Below Codes & Past 



<div id="menu">

<ul>
  <li><h2>CSS Drop Down Menus</h2>
    <ul>
      <li><a href="http://owlthemes.blogspot.com/
" title="SEO Consultants Directory">CSS Hover Navigation</a>
        <ul>
          <li><a href="../css-dropdown-menus.html" title="tanfa Introduction">Intro for CSS Enthusiasts</a></li>
          <li><a href="index.html" title="Plain HTML Code">Demonstration HTML</a></li>
          <li><a href="http://www.xs4all.nl/~peterned/csshover.html" title="whatever:hover file">csshover.htc file</a></li>
        </ul>
      </li>
    </ul>
  </li>
</ul>

<ul>
  <li><h2>Vertical CSS Pop-Out Menu</h2>
    <ul>
      <li><a href="http://www.seoconsultants.com/css/menus/vertical/" title="SEO Consultants Vertical Example">SEO Consultants Sample</a></li>
      <li><a href="vs7.html" title="Complete Example">tanfa Demo example</a>
        <ul>
          <li><a href="index.html#">tanfa Tutorial</a><!-- link to seo vertical tut -->
            <ul>
              <li><a href="vs1.html" title="Vertical Menu - Page 1">Stage 1</a></li>
              <li><a href="vs2.html" title="Vertical Menu - Page 2">Stage 2</a></li>
              <li><a href="vs3.html" title="Vertical Menu - Page 3">Stage 3</a></li>
              <li><a href="vs4.html" title="Vertical Menu - Page 4">Stage 4</a></li>
              <li><a href="vs5.html" title="Vertical Menu - Page 5">Stage 5</a></li>
              <li><a href="vs6.html" title="Vertical Menu - Page 6">Stage 6</a></li>
            </ul>
          </li>
        </ul>
      </li>
    </ul>
  </li>
</ul>

<ul>
  <li><h2>Horizontal Drop & Pop Menu</h2>
    <ul>
      <li><a href="http://www.seoconsultants.com/css/menus/horizontal/" title="SEO Consultants Directory Example">SEO Consultants Sample</a></li>
      <li><a href="hs7.html">tanfa Demo example</a><!-- fully working sample -->
        <ul>
          <li><a href="index.html#">tanfa Tutorial</a><!-- link to horizontal tut -->
            <ul>
              <li><a href="hs1.html" title="Horizontal Menu - Page 1">Stage 1</a></li>
              <li><a href="hs2.html" title="Horizontal Menu - Page 2">Stage 2</a></li>
              <li><a href="hs3.html" title="Horizontal Menu - Page 3">Stage 3</a></li>
              <li><a href="hs4.html" title="Horizontal Menu - Page 4">Stage 4</a></li>
              <li><a href="hs5.html" title="Horizontal Menu - Page 5">Stage 5</a></li>
              <li><a href="hs6.html" title="Horizontal Menu - Page 6">Stage 6</a></li>
            </ul>
          </li>
        </ul>
      </li>
    </ul>
  </li>
</ul>
</div>

READ MORE

"Circle Me On Google Plus" Gadget For Blogger

Posted by OWL THEMES On Monday, April 23, 2012 0 comments

Here Are The Steps : 

Sign In To Your Blogger Account >> Go To Design (Page Elements) Then Click Add Gadget >> Html / Java Script Then Copy Below Cods & Do Changers Shown Below...   


<div style="border:1px solid #999;border-radius:8px;width:200px;font-family:sans-serif;color:#666;">
<div style="background: #999;padding:2px;font-size:85%;color:#fff;">
<center>Circle me on Google Plus!</center>
</div>
<center>
<div style="font-weight:bold;padding:5px;">Your Name</div>

<a href="https://profiles.google.com/Profile ID"><img 
src="Youe Google Plus Profile Picture Link Here"
alt="OWL THEMES N” TRICKS on Google Plus" width="140" height="140" border="0" /></a>
<br />

<div style="font-size:80%;">
Blogger, speaker, film critic...
</div>

<div style="background: #DB4A38;padding:8px;width:80px;font-size:80%;color:#fff;margin:4px;">
<a href="https://profiles.google.com/Add Profile ID"
style="color:#fff;text-decoration:none;">
Add to circles</a>
</div>

</div>




This Is The View After You Add This Codes



READ MORE

Follow By E Mail Gedget

Posted by OWL THEMES On Sunday, April 15, 2012 0 comments

Today in early time, blogger released an important gadget, “Follow by Email”, this gadget allow your readers to subscribe to your blogs updates by e-mail and get the latest updates and posts delivered to their Inbox.
What is this gadget features


The New Gadget Features.
Simple to add and use with only few clicks.
Delivering your blog’s posts and updated to your readers mail inbox.
Detailed stats about your number of subscribers and daily views.



How To Add It.
Just log into your blogger dashboard >>> design >>>and in page elements click Add A Gadget, and you will find the new “Follow by Email” gadget listed at the top of the gadgets page.when you click on “Follow by Email” link, you’ll see a new window like the above image,
Give it your prefered title, and leave the Feedburner as it is. then click Save,
and you can enjoy your new gadget,
READ MORE

Buy A Custom Domain

Posted by OWL THEMES On 0 comments



many of us using blogger blogspot blog for blogging, because it is easy to use and editable.
but after a while you want to your blog look more professional and more credible by Publish on a custom domain .
because some people think that yourblogname.blogspot.com used by newbies only, That’s not always true, of course.
there is 2 ways to do it,
1- Point your already owned and registered domain name to your blog.
2- buy new domain name via your blogger account.
we’ll now talk about number 2.
buy new domain name via your blogger account.
now blogger makes it easier to convert your Blogspot Account Into A .com Domain
when you register a domain name via blogger account your Domain will be registered through a Google partner and cost $10 (USD) for one year.and as part of registration, you will also get a Google Apps account for your new domain.
and the great deal here is that YourBlogName.blogspot.com will redirect to your new custom domain. so you won’t leave your readers behind!
the first thing to to is to log into your blogger account,
Then got to Settings >>> Publishing
FIND : Switch to: • Custom Domain
and click Custom Domain


Watch This Video



READ MORE

Post Writing

Posted by OWL THEMES On 0 comments



Blogging, with no doubt, has revolutionized our lifestyle today and the possibilities and effects of blogs seems endless. Blogs have become our medium of expression and it looks as there is nothing we can’t do without blog. Blog have not left even minor aspects of our life to be changed and it’s effects are seen to be limitless. Most interesting, you do not even require any technical knowledge for getting and running up a blog in no no time and the best part of it, vitally anyone can do it at ease. With some basic blogging framework sketched on your mind and with original qualitative and unique information published in your blogs, you can even make some extra cash out of it with very less effort. But to make most out of it, it requires your true enthusiasm to blog and your ability to carve some engaging content out there. If it is a problem for you, that’s where I’m going to make a breakthrough today and teach you how to enhance your art of writing best content ever!
If you are already running a blog by now, you must have known that your content is the best traffic generator for your blog and traffic is the blood of your blog. It is the information people are looking for in your blog, and if you are able to provide them with it, you can have a successful blog running up out there. But writing a better content is not an easy job every time and you have to keep several things in mind while writing the article for your blog. I’m sure the following tips or hints will be a great help for you to increase your blogging quality. Make sure to check them out:


1.Research, Research and research
If you are not well known or not confident enough to carve your posts smartly, research a lot. In such cases, what I usually do is I find out several articles about my topic in internet and download and print them. I then sped my time reading all of them carefully and highlighting the important part of them. I sketch a rough article or draft. Then when I start my actual writing, I keep all those articles spread around me and I try to include the highlighted points. Try this trick. It is very easy, effective and not much time consuming. This is the best trick I use myself to write down the posts.


2. Personal, engaging and straight
While writing posts, consider making them more personal engaging and straight. While you write your posts, add your personal touch and tone. This encourages the reader to continue reading and it makes them feel that somebody personally is teaching themselves. Make your post engaging, by trying to involve interesting facts, examples and blueprints. But always remember to put your thoughts in a straight manner so the readers aren’t distracted. Writing in points and help you doing this. Try your best to make your posts reader friendly too!


3.The KISS technique
I did not invent this term but at least, this is my one of the favorite abbreviation in blogging. It is the short form of KEEP IT SHORT AND SIMPLE. Yes, always keep your post simple and short and meaningful. Long posts may get your readers bored so make your post compact while also interesting because people nowadays want a lot of things very fast. You blog will be appreciated if you keep your blog post short and simple.


4. The title of your post
As Daniel Socosso said, Until you carve out your title smartly it will be the first and last thing that your reader will read on your blog. Title summaries your post and encourages to read the rest of the article. A catchy and unique post title makes your half business done and it is equally important as your post’s body. No matter how nicely you write your post body, if your title is bulky and boring, nobody would want to read your post. So don’t ever hesitate to spend as much time you can with your headline and come up with the best matching title for your post. Take suggestion from family and friends, do some research and use suspicious and staggering words that can easily drive the attention of the reader of your blog and have the best title you can ever think of.


5.The more you edit the better the content gets.
If you try this one, I’m sure you’ll really have a nice article with you. What I do to all of my posts is when I prepare a finished copy of my post, I do not publish it straight away. I keep it for a while (about 2-3 days) and work on other posts. Meanwhile I often have look on that post, read it and edit my the post. I do it many times and more I edit my article, consequently the better it gets. It helps you to have better content than the time you wrote it.


6.Final Proofreading.
Grammatical, informational, spelling and other types of blunders in your post can hamper it’s quality a lot. It can also decrease the reputation of the blog and blogger himself. So don”t rush to hit that Publish button just yet. Try to check for every kinds of errors and if there are any, correct them immediately.
Remember that the popularity, reputation, traffic’s volume and your success as a blogger depends upon how you write and carve your content.These steps are really very very effective and they help you to come up always with better content. So be consistent towards your content of your blog and watch the success coming your way.

READ MORE