Best SEO Tips of 2013

Whether you�re advertising, organic methods, or going with a mix of both, proper SEO what ultimately is going to earn you a high ranking site.

Your website code (HTML) clean, neat and clean if you need to be scanned by bots to do well! The excessive because the starting point is that a lot of web designers to clean up their code stresses. They simply drag and drop a menu, sometimes the only way of tweaking the actual code in the accessories pack.

Read Also : 5 Ways For Your New Blog To Get Traffic

It is a very bad way to go.


This is something that�s preposterously at ease to do, even out whenever you�re a cub with HTML. To concentrate on the primary matter is that you really end tag are closed. Copy and paste your code into a MS Word document or Notepad 1st, in case you mess up and choose your time to save a copy from the code to the copyright to add tags.
One of the most underrated ways to make your site�s ranking is a good internal linking structure. For example, your homepage using keywords and links to other pages of your site, and want to redirect readers to the contrary. However, these links have to clean up. They do not negatively affect the flow of navigation of your site, and they can not mess inside your HTML. Take your time and make a clear linking structure.

Read Also : Increase blog traffic using powerful meta tags

Adding images, pics or wallpapers to your website is great.Visitors visiting your site and make sure it looks good, relevant pictures will appreciate. But the search engine bots separate captions and tags within your HTML appreciate. To do so, simply open your page, HTML view, photo tags to find, and add different keywords and captions. Will not appear on the photo, rather than their content for bots crawling robot feed for this post will be.
Today on the Web, smaller, more personal, despite the explosion of social sites, content is still king, and all materials must still contain a lot of relevant keywords. Just keyword research before you post any material to be sure to perform. In context and content of your keywords near the top of the list, the first few sentences, headers, etc. This small solution will improve your rankings.

Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com

HTML Beginner Tutorial

Getting Started

Most of the stuff on the web is no different than the stuff on your computer – it’s just a whole load of files sorted into a whole load of directories.

HTML files are nothing more than simple text files, so to start writing in HTML, you need nothing more than a simple text editor.

Notepad is a common text editor (on Windows this is usually found under the Programs > Accessories menu).
Type this in to your text editor:

This is my first web page
Now create a folder called ‘html’ in your C drive (or anywhere else you fancy) and save the file as “myfirstpage.html”. It is important that the extension “.html” is specified – some text editors, such as Notepad, will automatically save it as “.txt” otherwise.
To look at HTML files, they don’t even need to be on the web. Open a web browser such as Firefox or Internet Explorer and in the address bar, where you usually type web addresses, type in the location of the file you just saved (for example, “c:htmlmyfirstpage.html”) and hit return. Alternatively, go to the File menu of the browser, select Open, and browse for the file.
Pow. There it is. Your first web page. How exciting. And all it took was a few typed words.
We’ve said here to use a basic text-editor, such as Notepad, but you may be tempted to use a dedicated software program such as Macromedia Dreamweaver orMicrosoft Frontpage.
You should be very careful when using these programs, especially if you are a beginner, because they often throw in unnecessary or non-standard code to “help” you.
If you’re serious about learning HTML, you should read through a tutorial such as this first, so that you at least have a basic understanding of what is going on.
Software programs such as these will never give you the same control over a web page as coding by hand. by htmldog.com

Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com

Show Blogger Image Only In Homepage And Hide It In Post Page



Want to know how to hide specific images from blogger posts pages and to appear only in homepage? In this tutorial we’ll learn how we can do this! So let’s start hiding our images from posts pages:


Step 1. 


If you are using the old Blogger interface:

  • Go to Dashboard – Design – Edit HTML – Expand Widget Template (make a backup)

If you are using the new Blogger interface:

  • Go to Dashboard – Template – Edit HTML – Proceed – Expand Widget Template (make a backup)

Step 2. Find (CTRL + F) this code in your template:

    }]]></b:skin>

Step 3. Copy and paste the following code just below it

<b:if cond=’data:blog.pageType != &quot;index&quot;’>
<style>
.hidepic{
display: none;
}
</style>
</b:if>

Step 4. Save the Template.
Now everytime you create a post, firstly add the pic you want to hide and then switch to Edit HTML tab where you’ll see the HTML code of the image you have added that will look something like this:

<div class=”separator” style=”clear: both; text-align: center;”>
<a href=”http://2.bp.blogspot.com/-shsd_c51zRA/T6UeoPgcbII/AAAAAAAACCc/sYI6WB22CaM/s1600/fire_bird_by_fhrankee-d32af8v.png” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img border=”0″ height=”320″ src=”http://2.bp.blogspot.com/-shsd_c51zRA/T6UeoPgcbII/AAAAAAAACCc/sYI6WB22CaM/s320/fire_bird_by_fhrankee-d32af8v.png” width=”320″ /></a></div>

Note: it should be at the exact location where your image has been added (if the image is at the middle of the text, then the code should be located also at the middle)
All you have to do is to replace “separator” with “hidepic” as you can see in this screenshot below:
That’s it!

Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com

How To Create Drop Caps (Big First Letters) In Blogger/Blogspot

Here’s another way you can customize your Blog. In this case, your Posts and Comment’s first letter. The effect is a large first letter stretching down three or four lines with the text wrapped around. The drop cap letter can also use a different font and can be a different color to the rest of the text. You often see this style in newspapers, literature, magazines. In this tutorial i will show you how to apply automatically Magazine text style in Blogger Posts and Comments. So let’s start adding it!

Read Also : A Simple Related Posts Widget For Blogger

Big First Letter for your Blogger / Blogspot Posts


DEMO BELOW

                             


Step 1.

  •  If you are using the old Blogger interface:

Go to Dashboard – Design – Edit HTML – Expand Widget Template (make a backup)

  • If you are using the new Blogger interface:

Go to Dashboard – Template – Edit HTML – Proceed – Expand Widget Template (make a backup)

Step 2. Search (CTRL + F) for this piece of code:

]]></b:skin>


Step 3. Just above it, add the following:

.capital:first-letter {
float: left;
display: block;
font-family: Times, serif, Georgia;
font-size: 40px;
color: #000000;
margin:0px 5px 0 0;
padding:0 0 0 10px;
}


Customize:

Color – change the color highlighted in blue with the value of your desired color
Size – to change the letter size, increase/decrease the value highlighted in pink.

Step 4. Now search for this code:

<data:post.body/>


Step 5. Then immediately before and after add the red fragments you see in the example below:

 <div class=’capital’><data:post.body/></div>


Step 6. Save your template.

Important! If the above code is not working, add one of following codes from this example:


<p class=”capital”><data:post.body/></p>


Or

<span class=”capital”><data:post.body/></span>



Big First Letter For Blogger/Blogspot Comments


                                        DEMO BELOW


Step 1. Log in to your Blogger account, then go to Design (Layout) >> Edit HTML >> check the “Expand Widget Templates” box

Step 2. Search (CTRL + F) for this piece of code (if you have already added this code, skip step 2 & 3):

]]></b:skin>


Step 3. Add the following code just above ]]></b:skin>:

.capital:first-letter {
float: left;
display: block;
font-family: Times, serif, Georgia;
font-size: 40px;
color: #000000;
margin:0px 5px 0 0;
padding:0 0 0 10px;
}


Customize:

Color – change the color highlighted in blue with the value of your desired color
Size – to change the letter size, increase/decrease the value highlighted in pink.

Step 4. Then Search for this piece of code:

<data:comment.body/>


Step 5. Add the red codes before and after <data:comment.body/> as you can see in my example below:

<p class=”capital”><data:comment.body/></p>


Step 6. Save your Template.

That’s it! Now you have a cool drop cap first letter on your blog.
Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com

How to add Recommended Post Slide Out Widget For Blogger

Recommended Post Widget

You know those popup messages that slide out from the bottom right corner once you�ve almost reached the bottom of the page? Well, they used to be available only on WordPress but not anymore; now Blogger users can enjoy it too! The Recommended Post slide Out Widget is an invitation to the reader to read any other post once he has read one of your blog entries. It’s both useful for you (can improve your Click Through Rate (CTR) ) and for your blog visitors too.


Demo
Scroll down to the bottom of the post and you should see the Recommended Slide Out Widget appearing in the right corner of blog’s page.


How to add the Recommended Post Slide out Widget
1. Log in into your Blogger account, then go to Design (or Layout) > Page Elements
2. Click on Add a Gadget Link
3. Choose “HTML/JavaScript” option
4. Paste this code inside the empty box:

<div id=”hlslidein” style=”display:none;”> <div class=”help”>?</div><div class=”expand”>+</div> <div class=”close”>X</div> <p>Recommended for you</p> <div id=”hlslidein_image”></div> <div  id=”hlslidein_title”>Loading..</div> </div> <script> if(document.location.href.split(“/”).length==6&&document.location.href.indexOf(“.html”)!=-1){if(typeof hl_onload_queue==’undefined’)var hl_onload_queue=[];if(typeof hl_dom_loaded==’boolean’)hl_dom_loaded=false;else var hl_dom_loaded=false;if(typeof hl_async_loader!=’function’){function hl_async_loader(src,callback,id){var script=document.createElement(‘script’);script.type=”text/javascript”;script.async=true;script.src=src;script.id=id;var previous_script=document.getElementById(id);if(previous_script)if(previous_script.readyState==”loaded”||previous_script.readyState==”complete”){callback();return}else{script=previous_script}if(script.onload!=null)previous_callback=script.onload;script.onload=script.onreadystatechange=function(){var newcallback;if(previous_script&&previous_callback)newcallback=function(){previous_callback();callback()};else newcallback=callback;if(hl_dom_loaded){newcallback()}else hl_onload_queue.push(newcallback);script.onload=null;script.onreadystatechange=null};var head=document.getElementsByTagName(‘head’)[0];if(!previous_script)head.appendChild(script)}}if(typeof hl_domLoaded!=’function’)function hl_domLoaded(callback){hl_dom_loaded=true;var len=hl_onload_queue.length;for(var i=0;i<len;i++){hl_onload_queue[i]()}}hl_domLoaded();hl_async_loader(“http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js”,function(){hl_async_loader(“http://helplogger.googlecode.com/svn/trunk/Recommended Post Slide Out For Blogger Blogspot.js”,function(){},”hl-out-slide”)},”jQueryjs”)} </script> <a href=”http://helplogger.blogspot.ro/2012/06/recommended-post-slide-out-widget-for.html” target=”_blank”></a>


5. Save The Widget.
6. Go to Edit HTML > Check the “Expand Widget Template” box
7. Search (CTRL + F) for the following code :

<div class=’post-footer-line post-footer-line-1′>


OR

<p class=’post-footer-line post-footer-line-1′>


OR

<data:post.body/>


Immediately below any of these lines, add the following snippet

<b:if cond=’data:blog.pageType == “item”‘>
<div style=’display:none’ id=’bpslidein_place_holder’></div>
</b:if>


Now when the reader scrolls down to this div, the slide will open up.

8. Save your template. And that’s it!

Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com