Wednesday, 24 May 2017

How To Display Blogger Posts Inwards Grid Thought Amongst Thumbnails

Hello friends, welcome to the Blogger tutorial today I volition demo you lot how to display Blogger weblog posts inwards grid persuasion alongside thumbnails.
 welcome to the  Blogger tutorial today I volition demo you lot how to display Blogger bl How to Display Blogger Posts inwards Grid View With Thumbnails

When nosotros desire to demo our article inwards grid persuasion together with then nosotros download lot of third party Blogger templates together with nosotros upload them. If nosotros upload tertiary political party Blog templates together with then lot of other gadgets widgets, footer links are automatically added but hither nosotros volition display Blogger posts inwards grid persuasion inserting to a greater extent than or less code on blogger weblog theme.

These are Following Steps:-


Step 1: Go to Blogger Theme together with click Edit HTML button.
 welcome to the  Blogger tutorial today I volition demo you lot how to display Blogger bl How to Display Blogger Posts inwards Grid View With Thumbnails
Step 2: Here nosotros click whatsoever where inwards the code together with press Ctrl+F together with notice </head> tag together with glue the code higher upward the </head> tag.
 welcome to the  Blogger tutorial today I volition demo you lot how to display Blogger bl How to Display Blogger Posts inwards Grid View With Thumbnails
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.1.0.js"></script>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<script type='text/javascript'>//<![CDATA[
$(document).ready(function() {

    var width = 200;
    var tiptop = 170;
    var placeholder = 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhP7_eSz6Jj5hQRDX8RxfJnNOwUqGOtY8PH8HmvPq8JeCkYyB1gYNj3CN4IatUsYEFoI-RucFEcB1kbu75khPpczvtI51JqCIRrYyWZdfPJ5mO3i6ParTV2Y_lqz1bbVtzrRU-SXXaoLrc/s1600/no-thumb.png';
    var margins = "0px 0px 10px 10px";
    var fitThumb = 1;
    var titleTopPadding = 5;
    var titleBottomPadding = 8;
    var titleLeftRightPadding = 5;

    var titlePadding = titleTopPadding + 'px ' + titleLeftRightPadding + 'px ' + titleBottomPadding + 'px ' + titleLeftRightPadding + 'px';
    $('.post-body').each(function(n, wrapper) {
        var wrapper = $(wrapper);
        var icon = $(wrapper).find('img').first();
        var link = wrapper.parent().find('h3 a');
        var linkURL = link.attr('href');
        var linkTitle = link.text();

        $(link).remove();
        wrapper.empty();

        if (image.attr('src')) {
            var thumbHeight = image.attr('height');
            var thumbWidth = image.attr('width');
            var thumbParent = $(image).parent();

            wrapper.append(thumbParent);

            if (fitThumb) {
                image.attr({
                    src: image.attr('src').replace(/s\B\d{3,4}/, 's' + width + '-c')
                    });
                image.attr('width', width).attr('height', height);
            } else {
                image.attr({
                    src: image.attr('src').replace(/s\B\d{3,4}/, 's' + width)
                    });
                image.attr('width', width);
                var changeHeight = (thumbHeight / thumbWidth * width).toFixed(0);
                image.attr('height', changeHeight);
            }

        } else {
            var icon = $('<img>').attr('src', placeholder).attr('height', height).attr('width', width);
            var thumbParent = $('<a>').append(image).appendTo(wrapper);
        }

        thumbParent.attr('href', linkURL).css('clear', 'none').css('margin-left', '0').css('margin-right', '0').addClass('postThumbnail');

        var thumbTitle = $('<div>').prepend(linkTitle).css('padding', titlePadding).css('opacity', '0.9').css('filter', 'alpha(opacity=0.9)').css('width', width).appendTo(thumbParent);
        var ptitleHeight = thumbTitle.height();
        var summary = parseInt(ptitleHeight) + parseInt(titleTopPadding) + parseInt(titleBottomPadding);
        thumbTitle.css('margin-top', '-' + summary + 'px');
        wrapper.css('float', 'left').css('height', height).css('width', width).css('margin', margins).css('overflow', 'hidden');
    });
    $('#blog-pager').css('clear', 'both');
});

role hideLightbox() {
    var images = document.getElementsByTagName('img');
    for (var i = 0; i < images.length;++i) {
        images[i].onmouseover = function() {
            var html = this.parentNode.innerHTML;
            this.parentNode.innerHTML = html;
            this.onmouseover = null;
        };
    }
}

if (window.addEventListener) {
    window.addEventListener('load', hideLightbox, undefined);
} else {
    window.attachEvent('onload', hideLightbox);
}
//]]>
</script>
<style>
.post {
    border-bottom: 0 dotted #E6E6E6;
    margin-bottom: 0;
    padding-bottom: 0;
}

h2,.post-footer {
    display: none;
}

a.postThumbnail div {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-transform: capitalize;
    background: rgb(125,126,125);
 /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(125,126,125,1) 0%, rgba(14,14,14,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(125,126,125,1)), color-stop(100%,rgba(14,14,14,1)));
 /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%);
    background: -o-linear-gradient(top,  rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%);
    background: -ms-linear-gradient(top,  rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%);
    background: linear-gradient(to bottom,  rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=&#39;
    #7d7e7d&#39;, endColorstr=&#39;#0e0e0e&#39;,GradientType=0 );
}

a.postThumbnail:hover div {
    display: block;
}

.post-body img {
    background-color: transparent;
    border: 1px company transparent;
    padding: 0px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    opacity: 1;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}

.post-body img:hover {
    -ms-filter: &quot;
    progid: DXImageTransform.Microsoft.Alpha(Opacity=70)&quot;
    ;

filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
}
</style>
</b:if>
Step 3: Now opened upward the Blogger blog.


Tuesday, 23 May 2017

How To Take Linkedin Grouping Amongst Pictures

Hello friends, welcome to the Linkedin tutorial today I volition demo y'all how to delete withdraw Linkedin Group with pictures.
 welcome to the  Linkedin tutorial today I volition demo y'all how to delete withdraw Lin How to Remove Linkedin Group alongside Pictures

When nosotros practise Linkedin grouping too the grouping practise non endure according to our plans, hence nosotros tin dismiss delete Linkedin group.

These are Following Steps:-


Step 1: First nosotros opened upward Linkedin too click Work too hence click Groups option.
 welcome to the  Linkedin tutorial today I volition demo y'all how to delete withdraw Lin How to Remove Linkedin Group alongside Pictures
Step 2: Now nosotros click My Groups link too click Group Settings ICON too hence click Manage link.
 welcome to the  Linkedin tutorial today I volition demo y'all how to delete withdraw Lin How to Remove Linkedin Group alongside Pictures
Step 3: Here nosotros click Group details.
 welcome to the  Linkedin tutorial today I volition demo y'all how to delete withdraw Lin How to Remove Linkedin Group alongside Pictures
Step 4: Now nosotros scroll upward the page too click Delete Group button.
 welcome to the  Linkedin tutorial today I volition demo y'all how to delete withdraw Lin How to Remove Linkedin Group alongside Pictures
Step 5: Now y'all click confirm push to delete the group.
 welcome to the  Linkedin tutorial today I volition demo y'all how to delete withdraw Lin How to Remove Linkedin Group alongside Pictures



Monday, 22 May 2017

How To Brand Tabular Array Inward Blogger Shipping Service Amongst Pictures

Hello friends, welcome to the Blogger Design tutorial today I volition demo yous how to brand tabular array inwards Blogger spider web log post with pictures.
 welcome to the  Blogger Design tutorial today I volition demo yous how to brand tabular array  How to Make Table inwards Blogger Post alongside Pictures

Today nosotros usage tabular array inwards blogger spider web log post, when nosotros are going to transportation service almost whatever production specification, production review, roughly versus content hence nosotros usage tabular array in addition to demo the information, but blogger don't bring whatever characteristic similar that nosotros don't bring tabular array creating business office on it, hence hither nosotros usage make Table inwards Blogger spider web log using code.

These are Following Steps:-


Step 1: Go to Blogger Pages or Posts in addition to click Edit whatever transportation service or page.
 welcome to the  Blogger Design tutorial today I volition demo yous how to brand tabular array  How to Make Table inwards Blogger Post alongside Pictures
Step 2: Now click HTML push clitoris in addition to glue the code inwards the code surface area hence click update button. Replace Your Content alongside Orange Content.
 welcome to the  Blogger Design tutorial today I volition demo yous how to brand tabular array  How to Make Table inwards Blogger Post alongside Pictures
<table>
<tbody>
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
<th>Heading 3</th>
</tr>
<tr>
<td>Table A</td>
<td>Table B</td>
<td>Table C</td>
</tr>
<tr>
<td>Blogger</td>
<td>Wordpress</td>
<td>Joomla</td>
</tr>
<tr>
<td>CSS3</td>
<td>HTML5</td>
<td>Javascript</td>
</tr>
<tr>
<td>Sylesheet</td>
<td>Script</td>
<td>Coding</td>
</tr>
</tbody>
</table>
Step 3: Now Go to Blogger Theme in addition to click Customise button.
 welcome to the  Blogger Design tutorial today I volition demo yous how to brand tabular array  How to Make Table inwards Blogger Post alongside Pictures
Step 4: Here click Advanced in addition to scroll downwards the alternative hence click Add CSS in addition to glue the CSS code hither hence click Apply to Blog button.
 welcome to the  Blogger Design tutorial today I volition demo yous how to brand tabular array  How to Make Table inwards Blogger Post alongside Pictures
tabular array {
color:#333;
font-family:Helvetica,Arial,sans-serif;
width:100%;
border-spacing:1px;
border-collapse:separate;
padding:0 3px;
}
td, th {
height:30px;
transition:all .3s;
text-align:center;
width:auto;
}
th {
background:#B1B6AF;
font-weight:700;
border-radius: 5px;
}
td {
background:#FAFAFA;
}
tr:nth-child(even) td {
background:#F1F1F1;
}
tr:nth-child(odd) td {
background:#E1DDDD;
}
tr td:hover {
background:#666;
color:#FFF
}
Step 5: Now opened upward the Blogger blog.


Sunday, 21 May 2017

How To Add Together Alive Chat Box Widget To Blogger Alongside Pictures

Hello friends, welcome to the Blogger tutorial today I volition present you lot how to insert add together Live Chat Box widget to Blogger blog with pictures.
 welcome to the  Blogger tutorial today I volition present you lot how to insert add together Live Ch How to Add Live Chat Box Widget to Blogger alongside Pictures

Last fourth dimension nosotros add together a alive chat gadget inwards the Blog, but previously postal service nosotros did non chat without a user ID or password, together with then inwards this postal service nosotros going to Live Chat without a user ID password inwards Blogger blog, this chat widget render alive chat for our visitors.

These are Following Steps:-


Step 1: Go to Blogger Layout together with click Add a Gadget link.
 welcome to the  Blogger tutorial today I volition present you lot how to insert add together Live Ch How to Add Live Chat Box Widget to Blogger alongside Pictures
Step 2: Here nosotros conduct HTML/JavaScript gadget.
 welcome to the  Blogger tutorial today I volition present you lot how to insert add together Live Ch How to Add Live Chat Box Widget to Blogger alongside Pictures
Step 3: Here nosotros glue the code inwards the Content surface area together with click Save organisation button.
 welcome to the  Blogger tutorial today I volition present you lot how to insert add together Live Ch How to Add Live Chat Box Widget to Blogger alongside Pictures
<iframe src="https://www4.cbox.ws/box/?boxid=4316855&boxtag=DYb0D5" width="100%" height="450" allowtransparency="yes" frameborder="0" marginheight="0" marginwidth="0" scrolling="auto"></iframe>
Step 4: Now opened upwards the Blogger blog.


Saturday, 20 May 2017

How To Upload Video To Blogger Amongst Pictures

Hello friends, welcome to the Blogger tutorial today I volition present you lot how to upload a video to Blogger blog with pictures.
 welcome to the  Blogger tutorial today I volition present you lot how to upload a video to  How to Upload Video to Blogger amongst Pictures

When nosotros add together video inwards our weblog post, it similar to a greater extent than informative together with hither nosotros volition say you lot how you lot upload videos to the blog.

These are Following Steps:-


Step 1: First nosotros opened upwards Google Drive together with Right click on upload video together with hence click inwards Share.... option.
 welcome to the  Blogger tutorial today I volition present you lot how to upload a video to  How to Upload Video to Blogger amongst Pictures
Step 2: Here nosotros click Get Shareable link.
 welcome to the  Blogger tutorial today I volition present you lot how to upload a video to  How to Upload Video to Blogger amongst Pictures
Step 3: Now nosotros re-create link together with click Done button.
 welcome to the  Blogger tutorial today I volition present you lot how to upload a video to  How to Upload Video to Blogger amongst Pictures
Step 4: Paste the link inwards notepad together with nosotros add together link inwards iframe tag together with adjust the width & meridian according to our weblog or website spider web page.
 welcome to the  Blogger tutorial today I volition present you lot how to upload a video to  How to Upload Video to Blogger amongst Pictures
<iframe allowfullscreen="" frameborder="0" height="300" src="Google Drive URL" width="500"></iframe>
Step 5: Open Blogger Posts selection together with direct the post which nosotros add together the video together with hence click Edit link.
 welcome to the  Blogger tutorial today I volition present you lot how to upload a video to  How to Upload Video to Blogger amongst Pictures
Step 6: Now click HTML push clitoris together with notice the house where you lot add together the video together with hence glue the iframe code together with click the Update button.
 welcome to the  Blogger tutorial today I volition present you lot how to upload a video to  How to Upload Video to Blogger amongst Pictures
Step 7: Now opened upwards the Blogger blog.


Friday, 19 May 2017

How To Alter Profile Painting Demo On Blogger Amongst Pictures

Hello friends, welcome to the Blogger tutorial today I volition exhibit you lot how to supervene upon modify profile moving-picture exhibit on Blogger amongst pictures.
 welcome to the  Blogger tutorial today I volition exhibit you lot how to supervene upon modify pro How to Change Profile Picture on Blogger amongst Pictures

In this postal service nosotros going to change Blogger profile picture, it is real impotent to upload our paradigm on Blogger profile or you lot tin upload your weblog / website logo on it as well as fulfill the Blogger profile completely, when whatever visitor contact you lot as well as showtime s/he banking corporation stand upward for your Blogger profile, every bit nosotros know April 2, 2019 google unopen the Google+ service, which role unopen to of Blogger.

These are Following Steps:-

Step 1: Open Blogger Settings as well as click User settings as well as hence click Edit link nether the Blogger.
 welcome to the  Blogger tutorial today I volition exhibit you lot how to supervene upon modify pro How to Change Profile Picture on Blogger amongst Pictures
Step 2: Here motion Profile Photo expanse as well as click Choose File.
 welcome to the  Blogger tutorial today I volition exhibit you lot how to supervene upon modify pro How to Change Profile Picture on Blogger amongst Pictures
Step 3: Now choose the paradigm which you lot add together every bit a profile picture.
 welcome to the  Blogger tutorial today I volition exhibit you lot how to supervene upon modify pro How to Change Profile Picture on Blogger amongst Pictures
Step 4: Here scroll downwardly the page as well as click the Save Profile button.
 welcome to the  Blogger tutorial today I volition exhibit you lot how to supervene upon modify pro How to Change Profile Picture on Blogger amongst Pictures
Step 5: Now opened upward the Blogger blog.


How To Practice Static Habitation Page Inwards Blogger Alongside Pictures

Hello friends, welcome to the Blogger tutorial today I volition present yous how to brand create static homepage inwards Blogger blog alongside pictures.
 welcome to the  Blogger tutorial today I volition present yous how to brand create static How to Create Static Home Page inwards Blogger alongside Pictures

Today nosotros brand our weblog to website instantly offset nosotros make Static page to add together / insert into our Blogger weblog abode page, every bit nosotros know the blogger platform is rattling slow to run, but nosotros tin create alone weblog inwards Blogger, thence hither nosotros create a website using Blogger platform.

These are Following Steps:-


Step 1: Go to Blogger Pages in addition to click New Page button.
 welcome to the  Blogger tutorial today I volition present yous how to brand create static How to Create Static Home Page inwards Blogger alongside Pictures
Step 2: Here nosotros laissez passer page championship Home in addition to add together to a greater extent than or less Content thence click orangish Publish button.
 welcome to the  Blogger tutorial today I volition present yous how to brand create static How to Create Static Home Page inwards Blogger alongside Pictures
Step 3: Now nosotros opened upward the novel Home page merely click persuasion link in addition to nosotros re-create the URL like:-
https://your-blog-name.blogspot.com/p/home.html.
 welcome to the  Blogger tutorial today I volition present yous how to brand create static How to Create Static Home Page inwards Blogger alongside Pictures
Step 4: Now nosotros click Blogger Settings thence click Search preferences in addition to nosotros click Custom Redirects Edit link nether the Errors in addition to redirections option.
 welcome to the  Blogger tutorial today I volition present yous how to brand create static How to Create Static Home Page inwards Blogger alongside Pictures
Step 5: Now nosotros laissez passer / slash inwards offset box in addition to /p/home.html inwards minute box thence click banking concern stand upward for permanent selection instantly click Save link.
 welcome to the  Blogger tutorial today I volition present yous how to brand create static How to Create Static Home Page inwards Blogger alongside Pictures
Step 6: Here nosotros click Save Changes orangish button.
 welcome to the  Blogger tutorial today I volition present yous how to brand create static How to Create Static Home Page inwards Blogger alongside Pictures
Step 7: Now opened upward the Blogger blog.