Showing posts sorted by relevance for query advance-random-post-widget. Sort by date Show all posts
Showing posts sorted by relevance for query advance-random-post-widget. Sort by date Show all posts

Sunday, 24 June 2018

How To Add Together An Advance Random Post Service Widget Inward Blogger Blog

Leave a Comment
Random Post Widget is Helpful for your spider web log readers. It volition attention your Blog readers to honour your spider web log posts to a greater extent than easily. If you lot are looking for a Random post service widget together with thence you lot constitute it. Because inwards this post, I am going to nation you lot How to add together an advance random post service widget inwards blogger blog. Also, read this: how to modify mouse cursor inwards your blogger blog.
 Random Post Widget is Helpful for your spider web log readers How to add together an advance random post service widget inwards blogger blog

Add an advance random post service widget inwards Blogger blog.

  1. Go to the blogger.com together with sign inwards your account.
  2. Now choose your spider web log where you lot desire to present random post service widget.
  3. From your spider web log dashboard click on the layout option.
  4. Now click on the add together gadget link from the sidebar section.
  5. A novel window volition appear from this window Select HTML/javascript Gadget. 
     Random Post Widget is Helpful for your spider web log readers How to add together an advance random post service widget inwards blogger blog
  6. In the side past times side page, you lot volition run into a text box glue the next code inwards this text box. And Click on the relieve button. 
     Random Post Widget is Helpful for your spider web log readers How to add together an advance random post service widget inwards blogger blog
  7. Visit your spider web log together with run into the random posts are displaying inwards the sidebar.

<style>
#random-post img {
    border-radius: 5px;
    float: left;
    margin-right: 5px;
    width: 75px;
    height: 75px;
    background-color: #F5F5F5;
    padding: 3px;
    transition: all 0.2s linear 0s;
}
#random-post img:hover {
    opacity: 0.6;
}
ul#random-post {
    list-style-type: none;
    padding: 0px;
}
#random-post a {
    font-size: 12px;
    text-transform: uppercase;
    padding: 5px;
}
#random-post a:hover {
    text-decoration: none;
}
.random-summary {
    font-size: 11px;
    background: none;
    padding: 5px;
    margin-right: 8px;
margin-top:5px;
}
#random-post li {
    margin-bottom: 10px;
    border-bottom: 1px corporation #ccc;
    padding: 4px;
}
</style>
<ul id='random-post'>
<script type='text/javaScript'>
var randomposts_number = 5;
var randomposts_chars = 100;
var randomposts_details = 'no';
var randomposts_comments = 'Comments';
var randomposts_commentsd = 'Comments Disabled';
var randomposts_current = [];
var total_randomposts = 0;
var randomposts_current = novel Array(randomposts_number);
utilization randomposts(json) {
    total_randomposts = json.feed.openSearch$totalResults.$t
}
document.write('<script type=\"text/javascript\" src=\"/feeds/posts/default?alt=json-in-script&max-results=0&callback=randomposts\"><\/script>');
utilization getvalue() {
    for (var i = 0; i < randomposts_number; i++) {
        var constitute = false;
        var rndValue = get_random();
        for (var j = 0; j < randomposts_current.length; j++) {
            if (randomposts_current[j] == rndValue) {
                constitute = true;
                break
            }
        };
        if (found) {
            i--
        } else {
            randomposts_current[i] = rndValue
        }
    }
};
utilization get_random() {
    var ranNum = 1 + Math.round(Math.random() * (total_randomposts - 1));
    provide ranNum
};
</script>
<script type='text/javaScript'>
utilization random_posts(json) {
    for (var i = 0; i < randomposts_number; i++) {
        var entry = json.feed.entry[i];
        var randompoststitle = entry.title.$t;
        if ('content' inwards entry) {
            var randompostsnippet = entry.content.$t
        } else {
            if ('summary' inwards entry) {
                var randompostsnippet = entry.summary.$t
            } else {
                var randompostsnippet = "";
            }
        };
        randompostsnippet = randompostsnippet.replace(/<[^>]*>/g, "");
        if (randompostsnippet.length < randomposts_chars) {
            var randomposts_snippet = randompostsnippet
        } else {
            randompostsnippet = randompostsnippet.substring(0, randomposts_chars);
            var whitespace = randompostsnippet.lastIndexOf(" ");
            randomposts_snippet = randompostsnippet.substring(0, whitespace) + "&#133;";
        };
        for (var j = 0; j < entry.link.length; j++) {
            if ('thr$total' inwards entry) {
                var randomposts_commentsnum = entry.thr$total.$t + ' ' + randomposts_comments
            } else {
                randomposts_commentsnum = randomposts_commentsd
            }; if (entry.link[j].rel == 'alternate') {
                var randompostsurl = entry.link[j].href;
                var randomposts_date = entry.published.$t;
                if ('media$thumbnail' inwards entry) {
                    var randompoststhumb = entry.media$thumbnail.url
                } else {
                    randompoststhumb = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgg2Zpz2WEhVstG3ePfFHpSUILO-p6eAjDUHzQxPDkDEtQF761K78fD60kBESYMKwc_wv7FLXflTOR2d6AeFSlSVTU2lAKbl7BQ4gpNB5YdyvFlNkg95d9sYb0OvNnKpEdfuaWwkhylMd4/s1600/no-image-available.png"
                }
            }
        };
        document.write('<li>');
        document.write('<a href="' + randompostsurl + '" rel="nofollow"><img alt=" Random Post Widget is Helpful for your spider web log readers How to add together an advance random post service widget inwards blogger blog" src="' + randompoststhumb + '"/></a>');
        document.write('<div><a href="' + randompostsurl + '" rel="nofollow">' + randompoststitle + '</a></div>');
        if (randomposts_details == 'yes') {
            document.write('<span><div  class="random-info">' + randomposts_date.substring(8, 10) + '.' + randomposts_date.substring(5, 7) + '.' + randomposts_date.substring(0, 4) + ' - ' + randomposts_commentsnum) + '</div></span>'
        };
        document.write('<br/><div class="random-summary">' + randomposts_snippet + '</div><div style="clear:both"></div></li>')
    }
};
getvalue();
for (var i = 0; i < randomposts_number; i++) {
    document.write('<script type=\"text/javascript\" src=\"/feeds/posts/default?alt=json-in-script&start-index=' + randomposts_current[i] + '&max-results=1&callback=random_posts\"><\/script>')
};
</script>
</ul>

Customization

With this widget, v posts volition appear on your blog. But you lot tin forcefulness out present to a greater extent than than v posts past times replacing the 5 issue that is marked alongside reddish color. If you lot desire to present to a greater extent than than 100 characters alongside the post service together with thence you lot tin forcefulness out produce past times replacing the 100 that is equally good marked alongside the reddish Color. To shroud or present the special of your spider web log post service you lot tin forcefulness out supersede no yep or no. Also, read this: How to add together related posts widget alongside Thumbnail to blogger blog.

That's it. That was the random post service widget for Blogger blog. I promise it was useful for your blogger blog. Thanks for reading my this post. Keep visiting for to a greater extent than useful posts. If you lot volition confront whatsoever work you lot tin forcefulness out inquire me past times dropping your comments below.
Read More

Saturday, 9 June 2018

Top X Widgets For Blogger Weblog Created Amongst Html

Leave a Comment
We convey shared therefore many cute widgets on this blog. In this post, I am going to hand spill out 10 widgets for blogger. That tin brand your blogger website to a greater extent than stylish. The gadget I am going to hand you lot are created alongside HTML. So allow start alongside our cool HTML complimentary search box widget for blogger.
 We convey shared therefore many cute widgets on this spider web log Top 10 widgets for Blogger spider web log created alongside html

1. The Search box widget for Blogger.

The search box widget is actually a useful widget. width this widget you lot tin add together a search box to your Blogger blog. And also it is slow to add together you lot tin add together it without having cognition of HTML or roughly other programming. To add together a search box widget to your Blogger spider web log catch the next link. 10 fashionable advance search box for Blogger Blogspot.

2. H5N1 Random post widget for Blogger blog.

With the random post widget, you lot tin demo your posts randomly. The random post widget is also useful for your Blogger blog. Because if your spider web log has likewise many posts.  Then this widget tin hand an sentiment to your visitor to read a post. For adding the Random post to your Blogger spider web log catch the next link. How to add together an advance random post widget inwards Blogger blog.

3. H5N1 mouse cursor changing widget.

The mouse cursor widget tin attention you lot to alter mouse mode of your blogger blog. You tin also purpose a fashionable mouse inwards blogger spider web log similar other websites. We also convey shared roughly mouse styles on our blog. If you lot desire to alter mouse mode of your blogger spider web log therefore catch our post. How to alter mouse cursor inwards your Blogger blog?

4. Floating social percentage buttons for blogger blog.

The floating social percentage widget is actually a fashionable social percentage widget for Blogger. With this widget, you lot tin demo floating social percentage buttons on your blogger blog. And the social push clitoris volition seem on the left side. For adding this widget opened upwards the next link. How to add together floating social percentage buttons on your blogger blog.

5. Popup Email subscription box widget for Blogger.

With Popup electronic mail subscription box widget you lot tin demo subscription box equally a popup. The electronic mail subscription box widget is actually useful for your blog. This widget tin attention you lot to larn to a greater extent than subscribers. For adding this useful widget to your blogger spider web log catch our post. Popup electronic mail subscription box widget for blogger.

6. Related posts widget alongside a thumbnail.

Related posts widget is a cool widget for blogger blog. With this widget, you lot tin easily demo related post at the bottom of the post. For adding a related posts widget at the cease of your spider web log post catch our Post. How to add together cool related posts widget alongside Thumbnail to blogger blog.

7. Add snowfall falling effects on your blogger blog.

The snowfall falling effects widget is created alongside JQ. alongside this useful blogger widget, you lot tin add together Beautiful snowfall falling effects on your blogger blog. Snow falling widget tin brand your Blogger spider web log to a greater extent than stylish. And you lot tin also purpose it inwards your other websites similar WordPress or whatsoever other spider web page. For adding fashionable snowfall falling effects on your blogger spider web log catch my post. How to add together snowfall falling effects on Blogger blog.

8. Lock your Blogger contents alongside this amazing Blogger widget.

With this amazing blogger widget you lot tin lock you lot selected content. And the reader can't meet the content until he/she volition non press the percentage button. So this is the widget percentage to unlock for blogger. For adding this cool gadget to your blogger spider web log catch my post. How to demo percentage to unlock content inwards blogger blog.


9. Facebook static similar box widget for Blogger blog.

The Facebook static similar box widget is fashionable Blogger widget. With this widget, nosotros tin demo Facebook similar box into the fashionable box. It's a actually useful widget for your blogger blog. For adding this useful widget to your Blogger spider web log catch our post. Facebook static similar box widget that appears on mouse hover.

10. Facebook Popup similar box widget for blogger blog.

The Facebook Popup similar box widget is the best widget for getting to a greater extent than likes on your facebook page. H5N1 reader tin meet this widget alone when he volition catch your spider web log for the commencement time. For adding facebook popup similar box to your blogger catch our post. The Facebook popup similar box widget for your website fashionable design.

Read More

Thursday, 21 June 2018

New Fashionable Pop Postal Service Widget Amongst Thumbnail For Blogger

Leave a Comment
Recently I shared a postal service on How to add together an advance random postal service widget inwards blogger blog. And inwards this post, I am going to laissez passer on you lot a novel fashionable Popular postal service widget alongside Thumbnail for your Blogger Blog. So if you lot desire to add together a fashionable Popular postal service widget to your Blogger blog. Then follow our below steps.
How to add together an advance random postal service widget inwards blogger spider web log New fashionable Popular postal service widget alongside thumbnail for Blogger

Add a fashionable Popular postal service widget alongside thumbnail to blogger blog.

  1. Go to the Blogger.com in addition to sign inwards your account.
  2. Now conduct your Blog where you lot desire to add together a fashionable Popular postal service widget.
  3. From your spider web log dashboard click on the layout option.
  4. From the sidebar department click on the Add Gadget link.
  5. Now a novel window volition appear on your screen. From this window conduct the Popular postal service widget in addition to add together it to your blog.
  6. After adding a pop postal service widget. Click on the template choice in addition to from the adjacent page click on the Edit HTML button.
  7. Search </b:skin> past times pressing CTRL+F. 
  8. After finding the </b: skin> glue the next code but earlier it.
.popularposts{line-height:1.5;color:#fff;font-size:100%;border-radius:10px 10px 0 0;}
 .popular-posts{font-size:100%;line-height:1.5;border-radius:0; color:#fff}
.popular-posts a{color:#fff} .popular-posts a:hover{color:#fff}
.PopularPosts ul{counter-reset:popcount;list-style:none;padding:0;margin:0;}
 .popular-posts ul li:before{counter-increment:popcount;list-style-type:none;margin:10px 15px 0 5px;padding:0.3em 0.8em;content:counter(popcount);color:#fff;font-size:16px;position:relative;border:1px enterprise #fff;border-radius:90%;float:right;}
 .PopularPosts li{background:none;list-style:none;display:block;text-transform:uppercase;padding:10px 18px;margin:0;clear:both;overflow:hidden;border-bottom:none;font:13.5px/140%;}
 .PopularPosts li a{text-decoration:none}
 .PopularPosts li:hover{background:#0FB9BB}
 #PopularPosts1 .widget-content{margin-bottom:-2px;padding:0px 0 0 18px;}
.PopularPosts ul li{padding:3px 7px;border:none} .PopularPosts ul li:nth-child(1){margin-right:0;background-color:#286dfa;} .PopularPosts ul li:nth-child(2){margin-right:0;background-color:#d20303;} .PopularPosts ul li:nth-child(3){margin-right:0;background-color:#20ba02;} .PopularPosts ul li:nth-child(4){margin-right:0;background-color:#d005a7;} .PopularPosts ul li:nth-child(5){margin-right:0;background-color:#03c6bf;} .PopularPosts ul li:nth-child(6){margin-right:0;background-color:#d9ba71;} .PopularPosts ul li:nth-child(7){margin-right:0;background-color:#2ba6e1;} .PopularPosts ul li:nth-child(8){margin-right:0;background-color:#718397;} .PopularPosts ul li:nth-child(9){margin-right:0;background-color:#11b7b5;} .PopularPosts ul li:nth-child(10){margin-right:0;background-color:#d9ba71;}
And you lot are done. Now take in your spider web log to encounter how is it looking. In illustration you lot volition larn an fault you lot tin sack driblet your comment I volition help you lot to cook it. Thanks for reading my this post. And Keep visiting for to a greater extent than useful posts. If this Post was Useful for You therefore you lot tin sack part it alongside your Friends past times pressing the Share Buttons.
Read More