Recent Post
Showing posts with label BLOGGING TRICKS. Show all posts
Showing posts with label BLOGGING TRICKS. Show all posts

Wednesday, May 28, 2014

Scrolling Recent Post Widget For Your Blog


We have share with you amazing bloggers widgets such as Popular Post Widget or Recent Comment Widget to engage your visitors on your blog. The implementation of such plugins on your blog makes easy for your reader to browse through different content on your blog and helps to grow readership of your blog. Today i will share with you guys awesome scrolling recent post widget for your blog. So lets add this together on your blog.


Now Copy/Paste below code into the popup window.


<!-- Latest/Recent Posts Scrolling Bar By EXEIdeas -->
<style type="text/css">
#exe_latespost_scrolling_bar {background:#1C1D1D;width: 100%;margin: 0 auto;text-align: center;color: #F40045;border-none: 4px solid #000;-webkit-box-shadow: #666666 0px 1px 3px;-moz-box-shadow: #666666 0px 1px 3px;box-shadow: #1C1D1D 0px 1px 3px;z-index: 999999;line-height: 4.85em;letter-spacing: 1px;}
#exe_latespost_scrolling_bar li {display:inline;}
#exe_latespost_scrolling_bar a{text-decoration:none;color:#FFFFFF;font-size:25px;font-weight:bold;font-family:cursive,"Helvetica",sans-serif;}
#exe_latespost_scrolling_bar a:hover{text-decoration:underline;}
#exe_latespost_scrolling_bar_close{float:right;cursor:hand;cursor:pointer;margin: 8px 20px 0 0;}
</style>
<div id='exe_latespost_scrolling_bar'>
<script type="text/javascript">
function latestpostlistbyexeideas(json) {
document.write('<marquee behavior="scroll" onmouseover="this.stop();" onmouseout="this.start();" width="95%" scrolldelay="80" direction="left" >');
for (var i = 0; i < json.feed.entry.length; i++)
{
for (var j = 0; j < json.feed.entry[i].link.length; j++) {
if (json.feed.entry[i].link[j].rel == 'alternate') {
break;
}
}
var EXEentryUrl = "'" + json.feed.entry[i].link[j].href + "'";
var EXEentryTitle = json.feed.entry[i].title.$t;
var item = ">> <li>" + "<a href=" + EXEentryUrl + ' target="_blank">' + EXEentryTitle + "</a> </li>";
document.write(item);
}
document.write('</marquee>');
}
</script>
<script src="http://devendras82allfun.blogspot.in/feeds/posts/summary?max-results=10&amp;alt=json-in-script&amp;callback=latestpostlistbyexeideas"></script>
<noscript>Allow Your JavaScript To View This Awesome Widget. {<a href="http://www.exeideas.com">+ Grab this Widget</a>}</noscript>
</div>
<!-- Latest/Recent Posts Scrolling Bar By EXEIdeas -->


  • Change http://devendras82allfun.blogspot.in to your blog Url. 
   4. All done Enjoy!
Read more ...

Friday, May 23, 2014

How to embed a YouTube channel into a webpage- DevenCom



In order to embed your channel, all you need to do is copy then paste the following code in another web-page.



COPY CODE & PAST 
<script src="http://www.gmodules.com/ig/ifr?url=http://www.google.com/ig/modules/youtube.
xml&up_channel=
YourChannelName&synd=open&w=320&h=390&title=&border=%23ffffff%7C3px%2C1px+solid+
%23999999&output=js"></script>


Make sure to replace the YourChannelName with your actual channel name.

For example: if your channel name were CaliChick94066 your channel embed code would be: 
Make s
Read more ...

Saturday, May 3, 2014

How to Backup your FeedBurner Email Subscribers list? Best Trick


How to Backup your FeedBurner Email Subscribers list?

 

Feedburner is a popular free email subscription service.For some, FeedBurner might be everything they need.But for advanced bloggers premium services seem to offer lot of features, and the fact that feedburner ran into problems.Whatever the case, it is a good habit to backup your things.Whether you want to make a backup,or you just want to move your subscribers to another service,  you will need to download your FeedBurner subscriber list. Here, i will tell you how to backup your FeedBurner Email Subscribers list.

Download Your Feedburner Email Subsribers List

Then Scroll Down and Click on View Subscriber Details.
Then Click on Export CSV Link.
I hope that you like this article and please send us your recommendation through Comment.
Read more ...

How to create a Custom Google plus URL?



Get a custom URL now!
There are a few requirements to get this option:
  • You must have 10 or more followers on Google+
  • Your account has to be at least a month old
  • You need to have a profile photo

Visit https://plus.google.com/me .
Now add Few Characters and then Click on Change URL Button.
You may be asked to verify your account using your mobile number. To do this, you’ll need to:
  1. Enter your mobile number when asked, then click Send code in the lower left corner.
  2. Check your mobile for the code that was sent to you.
  3. Enter that code in the box on your screen, then click Verify in the lower left corner.
This URL will be linked to your Google+ Page or Profile, so be sure everything is exactly the way you want it. Once your URL has been approved, you cannot request to change it. When you are certain, click Confirm choice.
Read more ...

How to open link in new tab on html? Best Trick



use <a href="url" target="_blank">...</a>

It is also worth noting that users can force a link to open in a new window/tab by [Meta Key]-clicking a link. That means both behaviors are available to them for links. That also means that if you like opening new tabs, you can, and you don't have to impart that behavior on anyone else. 
Read more ...

Thursday, April 24, 2014

Open All External Links in a New Window



Automatically Open all External Links in a New Window in Blogger!

Open all external links in a new tab
Follow these easy steps to add this cool dynamic way of updating all external links.
Note: This method works for both blogger and wordpress blogs, irrespective of platforms.
1.    Go to Blogger > Template
2.    Backup your template
3.    Click "Edit HTML"
4.    Just above </head> paste the following script:


<script src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'></script>
<script type='text/javascript'>
$(document).ready(function() { 
  $("a[href^='http://']").each(
    function(){
     if(this.href.indexOf(location.hostname) == -1) {
        $(this).attr('target', '_blank');
      }
    }
  );
$("a[href^='https://']").each( 
function(){ 
if(this.href.indexOf(location.hostname) == -1) { 
$(this).attr('target', '_blank'); 


);

});

</script>
Read more ...

Tuesday, April 15, 2014

-Automatically Open all External Links in a New Window in Blogger-

Automatically Open all External Links in a New Window in Blogger!




Open all external links in a new tab
Follow these easy steps to add this cool dynamic way of updating all external links.
Note: This method works for both blogger and wordpress blogs, irrespective of platforms.
1.    Go to Blogger > Template
2.    Backup your template
3.    Click "Edit HTML"
4.    Just above </head> paste the following script:


<script src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'></script>
<script type='text/javascript'>
$(document).ready(function() { 
  $("a[href^='http://']").each(
    function(){
     if(this.href.indexOf(location.hostname) == -1) {
        $(this).attr('target', '_blank');
      }
    }
  );
$("a[href^='https://']").each( 
function(){ 
if(this.href.indexOf(location.hostname) == -1) { 
$(this).attr('target', '_blank'); 


);
 
});
</script>

Read more ...