HOW TO DOWNLOAD TORRENT FILES USING OPERA

Hello guys, today i’m here with a trick for opera users. If OPERA is your default browser then i think you already know this trick, but if you are not then you must read it. Ok let us suppose you don’t want to install any extension on your google chrome or firefox but want to download torrent files and also you have opera browser installed in your pc. Then you have no need to download any extension to chrome or firefox , you can use opera as torrent client to download torrent files. It’s very simple, let me explain you with some simple steps.

So . . 

STEP 1.
First of all download any .torrent file to your computer.Software

STEP 2.
Now right click on the file and choose the option to OPEN WITH OPERA.




STEP 3:
Now you’ll see below type of screen, just click on OPEN to download torrent file not on SAVE.

STEP 4:


Download will start, just wait and enjoy.

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

How To Show Blogger Gadget/ Widget In Specific Pages

In this tutorial im going to explain How To Show 

Blogger Gadget/ Widget In Specific Pages. When we designing the 

blogger templates. sometime we want to change out gadget/

widget.Sometime need to show gadget/ widget homepage 

only.some time inside post only. At that time we don’t have

any option for customize like that. We need to understand 

about code.But most of are not good at coding.So in this 

tutorial will helps to arrange your gadget/ widget as you want.

follow these steps.


1. Log in to blogger account and Go to Design >> Edit HTML
    (make sure backup your template first)

2. Put checked mark in Expand Widget Templates

3. Now you have to press  Ctrl+F  key and type the unique  title that you gave to gadget or widget.
Lets say you gave title as Subscribe, the code will show like this.

<b:widget id='HTML1' locked='false' title='Subscribe' type='HTML'>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:includable>


So,code start with <b:includable id=’main’>  and end with </b:includable>
you have to find this both code.
lets see how to show this gadget in specific pages.

How to show blogger gadget in home page and other pages.(Except post pages.)

So,show gadget in home page and other pages.You have to add that red code like below.

<b:includable id='main'>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>


How to show blogger gadget in Post pages only.

<b:includable id='main'>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>


How to show blogger gadget in only specific page

<b:includable id='main'>
<b:if cond='data:blog.url == &quot;URL of the page&quot;'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>


you can replace URL of the page with URL which you want to show the gadget only that page.

7. Now save your template
 you are done.
Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com

CSS3 Thread Out Social Sharing Widget for Blogger

When it comes to attracting attention to yourself on the internet, nothing does a better job than share buttons.
Whether its twitter or google plus, social media probably has a huge impact on your traffic. I set out to create an attention grabbing way to display buttons, and came up with this: a circle that expands revealing a bunch of Social Sharing Widget on hover.
This widget is created using Pure CSS3 and ShareThis social sharing plugin. This widget have 4 buttons: Facebook Like

button, Google +1 button, Tweet button and main ShareThis button for more social sharing links.

Note: This Blogger Social Sharing widget animated zoom out feature will only work on latest Browsers and won�t work with Internet Explorer ( not tested with IE 10 ).

Live Demo

Add CSS3 Thread Out Social Sharing Widget In Blogger

1. Login to Blogger Dashboard > Design tab > Edit Html
2. Click on Expand Template widgets check box
3. Search for <div class=�post-footer-line post-footer-line-1?> HTML tag
4. And Put Below Code immediately after it
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<style type="text/css">
.ringMenu {
width: 100px;
margin: 150px auto;
}
.ringMenu ul {
list-style: none;
position: relative;
width: 100px;
color: white;
}
.ringMenu ul a {
color: white;
}
.ringMenu ul li {
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.ringMenu ul li a {
display: block;
width: 100px;
height: 100px;
background: rgba(50,50,50,0.7);
text-align: center;
line-height: 100px;
-webkit-border-radius: 50px;
border-radius: 50px;
font-size: 20px;
}
.ringMenu ul li a:hover {
background: rgba(230,150,20,0.7);
text-decoration: none;
}

.ringMenu ul li:not(.main) {
-webkit-transform: rotate(-180deg) scale(0);
-moz-transform: rotate(-180deg) scale(0);
-o-transform: rotate(-180deg) scale(0);
transform: rotate(-180deg) scale(0);
opacity: 0;
}
.ringMenu:hover ul li {
-webkit-transform: rotate(0) scale(1);
-moz-transform: rotate(0) scale(1);
-o-transform: rotate(0) scale(1);
transform: rotate(0) scale(1);
opacity: 1;
}
.ringMenu ul li.top {
-webkit-transform-origin: 50% 152px;
-moz-transform-origin: 50% 152px;
-o-transform-origin: 50% 152px;
transform-origin: 50% 152px;
position: absolute;
top: -70px;
left: 50px;
}
.ringMenu ul li.bottom {
-webkit-transform-origin: 50% -52px;
-moz-transform-origin: 50% -52px;
-o-transform-origin: 50% -52px;
transform-origin: 50% -52px;
position: absolute;
bottom: -70px;
left: 50px;
}
.ringMenu ul li.right {
-webkit-transform-origin: -52px 50%;
-moz-transform-origin: -52px 50%;
-o-transform-origin: -52px 50%;
transform-origin: -52px 50%;
position: absolute;
top: 10px;
right: -50px;
}
.ringMenu ul li.left {
-webkit-transform-origin: 152px 50%;
-moz-transform-origin: 152px 50%;
-o-transform-origin: 152px 50%;
transform-origin: 152px 50%;
position: absolute;
top: 10px;
left: -50px;
}
</style>
<div class="ringMenu">
<script type="text/javascript">var switchTo5x=false;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "ur-e9856caa-8f3b-40a6-82af-461e390fe167"});</script>
<ul>
<li class="main"><a href="#main">SHARE</a></li>
<li class="top"><span class='st_fblike_vcount' displayText='Like'></span></li>
<li class="right"><span class='st_sharethis_vcount' displayText='Share'></span></li>
<li class="bottom"><span class='st_plusone_vcount' displayText='+1'></span></li>
<li class="left"><span class='st_twitter_vcount' displayText='Tweet'></span></li>
</ul>
</div>
</b:if>
4. Save your Template and Done!
Related Widget  : No 1. A Colorful jquery digital clock

Customization

The demo and post codes are same. You have to adjust this widget with your blog design ( how do I know your blog design look like.  No more customization needed for this CSS3 Thread Out Social Sharing Widget CSS3 Thread Out Social Sharing Widget for Blogger for Blogger, but if you want you can replace Share This script with your registered Share This account script.
Once you�ve done that, save everything and check it out! Thanks for reading, and if you liked this little tutorial and socal sharing widget don�t forget to share. It really helps. Click here for more stylish widgets

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

How to Add Middle Finger and Dislike Emoticon in Facebook Chat

How to Add Middle Finger and Dislike Emoticon in Facebook Chat

How to Add Middle Finger and Dislike Emoticon in Facebook ChatHow to Add Middle Finger and Dislike Emoticon in Facebook Chat – Most of you would have been think that it would be great if we had Middle Finger and Dislike Emotion in Facebook Chat, But its not available in the Facebook chat emotion section. But some of the programmers have created a Middle Finger and Dislike Emotion for the users to get rid of the random, boring, regular Facebook emotion in Facebook chat. These two emotion will make the conversation interesting and thrilling. In this article i will show you��How to Add Middle Finger and Dislike Emoticon in Facebook Chat�.

Read more