Remove space from Blog post body and Footer for Blogger

Add code to CSS

.main-inner { padding-bottom: 0px !important; }

Show widget only in Homepage for Blogger

In Template click Edit HTML and edit code below;

<b:widget id='HTML1' locked='false' title='Recent Posts' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.url == data:blog.homepageUrl'><!-- 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>
</b:widget>

Installing Drivers on Thinkpad Yoga 14

Installing Drivers on Thinkpad Yoga 14

If you are getting BLUESCREEN of death on Windows 8 fresh install try the steps below.

1. Once you finish installing windows turn off automatic updates so graphics driver can't be updated.
2. Install all the chipset and wifi drivers. (Important to install these two drivers first)
3. Install Thinkvantage software and install rest of the drivers.
4. Finally install the graphics driver.

Medeival Total War II - The Last Kingdom Mod Viking Unit List

create_unit Ragnar "HirdmennB" 1 9 3 3

Leidgangr Archers
Hladir Bowmen
Leidgangr Spearmen
Herkledi Spearmen
Vikingr Axemen
Berserkers
Atgeirmenn
Norse Swordsmen
Huskarl Swordsmen
Huskarl Axemen
HirdmennB
Riddarar

The Last Kingdom Mod Download (M2TW)

Contact Form for Blogger on Page for Blogger

Contact Form for Blogger on Page

 Step 1: Add Contact Form gadget in Layout

After Contact form gadget is added, please drag and drop it below Blog Posts gadget, then click Save arrangement button.

 Step 2: To hide contact form widget go to your Template, and click Edit HTML and find:

]]></b:skin>

Step 3: Insert before the ]]></b:skin> code:

.widget.ContactForm {
 display: none;
 }

 Step 4: Create new Page, then name the page "Contact" and paste code below in the html mode;

<style type="text/css">
 .widget.ContactForm {
 display: block;
 }
 .post-footer {
 display: none;
 }
 #blog-pager {
 display: none;
 }
 .blog-feeds {
 display: none;
 }
 .widget.ContactForm .title {
 display: none;
 }
 .widget.ContactForm * {
 max-width: 100%;
 }
 </style>

Step 5: Save

Create a Google Groups Web Forum for Blogger

Create a Google Groups Web Forum on Page

 Step 1: Create Google Group

 Step 2: Create new Page, then name the page "Forum" and paste in the code below in HTML mode;

Paste:

    <iframe frameborder="0" height="1000px" id="forum_embed" scrolling="no"
    src="javascript:void(0)" width="100%">
        <br />
    </iframe>
    <script type="text/javascript">
        document.getElementById("forum_embed").src =
            "https://groups.google.com/forum/embed/?place=forum/Your Google Group link" +
            "&showsearch=true&showpopout=false&parenturl=" + encodeURIComponent(window.location.href);
    </script>

Step 3: Save

How to change Older Post and New Post link text for Blogger

How to change Older Post and New Post link text

In Template click Edit HTML and edit code below;

<div class='blog-pager' id='blog-pager'>
    <b:if cond='data:newerPageUrl'>
      <span id='blog-pager-newer-link'>
      <a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-newer-link&quot;' expr:title='data:newerPageTitle'>Next Entries</a>
      </span>
    </b:if>

    <b:if cond='data:olderPageUrl'>
      <span id='blog-pager-older-link'>
      <a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'>Previous Entries</a>
      </span>