Files Included : Template.xml Background Images Backup JS Documentation

Table of Contents : Installation Layout Widgets HTML Error 404 Credits





1. Installation
  1. Unzip the Template.zip file.
  2. On Blogger Dashboard Click Template.
  3. Click on Backup / Restore.
  4. Click on Download Full Template to keep your old template.
  5. Click Browse... button. Find where the “Template.xml” file location.
  6. Then Click Upload.
  7. Edit mobile Preveiw. (follow images).



After installing the theme, there are minimun settings to make all widgets work fine in this template.

2. Blog Feed
  1. On Blogger Dashboard Click Settings.
  2. Click Other.
  3. In Site Feed > Allow Blog Feed Choose Full.
  4. Then Click Save settings.


Now you can Edit the meta tag Keywords of your blog. follow this steps


  1. On Blogger Dashbord Click Template.
  2. Click Edit HTML.
  3. Click Ctrl + F and Search for the following Code:
  4. <meta content='Keywords_Here' name='keywords'/>
  5. Change Keywords_Here with your blog keywords you want to use.
  6. Click Save template.


2. Layout

This is the Layout appearance of the default widgets i use in the demo blog.

Of course you can edit, change or remove any widget as you like.


3. Widgets
1. Main Blog Widget
  1. On Blogger Dashboard Click Layout.
  2. Click Edit on Blog Posts Widget.
  3. Now change it as you like it to be.
  4. Click Save.

This are the default settings i use in the demo blog.

Of course it's up to you, you can edit it as you like.


2. HTML/JavaScript Widget

To add HTML/JavaScript Widget you'd better to you use this.

You need to add your codes between tags <center> YOUR_CODE_HER </center>.
  1. On Blogger Dashboard Click Layout.
  2. Click Add a Gadget.
  3. Choose HTML/JavaScript.
  4. Add your code between the tags <center></center> like the image.
  5. Click Save.


Using this is very useful as it keeps your widget content aligned in the center and it gives a better appearance for it's content in other platforms like smart phones and tablets.

Now Replace YOUR_CODE_HERE with your code content you will add.

4. HTML
1. Top Navigation

  1. On Blogger Dashbord Click Template.
  2. Click Edit HTML.
  3. Click Ctrl + F and Search for the following Code:

  4. <nav id='mymenuone'><!-- Top Navigation -->
      <ul class='sf-menu res_mode sf-js-enabled sf-shadow'>
        <li class='active'><a href='/'>Home</a></li>
        <li><a class='bars' href='#'>Menu</a>
          <ul class='sub-menu'>
            <li><a href='#'>Sports</a></li>
            <li><a class='bars' href='#'>Sub Menu 1</a>
              <ul class='sub-menu2'>
                <li><a href='#'>Cars</a></li>
                <li><a href='#'>New HD Movies</a></li>
                <li><a href='#'>Stories Of Success</a></li>
                <li><a href='#'>Authors Life</a></li>
              </ul>
            </li>
            <li><a href='#'>Free Songs</a></li>
            <li><a class='bars' href='#'>Sub Menu 2</a>
              <ul class='sub-menu2'>
                <li><a href='#'>Travels</a></li>
                <li><a href='#'>New Free Games</a></li>
                <li><a href='#'>HD Trailers</a></li>
                <li><a href='#'>Most Wanted Pics</a></li>
              </ul>
            </li>
            <li><a href='#'>Food Types</a></li>
          </ul>
        </li>
        <li><a href='#'>Archive Page</a></li>
        <li><a href='#'>Label Page</a></li>
        <li><a href='#'>Error 404</a></li>
        <li><a class='bars' href='#'>Posts</a>
          <ul class='sub-menu'>
            <li><a href='#'>Posts With Images</a></li>
            <li><a href='#'>Posts With Videos</a></li>
            <li><a href='#'>About Us Page</a></li>
          </ul>
        </li>
        <li><a href='#'>Purchase Template</a></li>
      </ul>
    </nav>

  5. Change # with your links.
  6. Click Save template.

Explanation :

I'm Explaining the top code of Top Navigation to help you to edit it easily.


1- This is the code of the navigation without any dropdown menus.

<ul class='sf-menu res_mode sf-js-enabled sf-shadow'>
  <li class='active'><a href='/'>Home</a></li>
  <li><a href='#'>Menu</a></li>
  <li><a href='#'>Archive Page</a></li>
  <li><a href='#'>Label Page</a></li>
  <li><a href='#'>Error 404</a></li>
  <li><a href='#'>Posts</a></li>
  <li><a href='#'>Purchase Template</a></li>
</ul>

2- This is the code of the navigation with a dropdown menu.

<ul class='sf-menu res_mode sf-js-enabled sf-shadow'>
  <li class='active'><a href='/'>Home</a></li>
  <li><a href='#'>Menu</a></li>
  <li><a href='#'>Archive Page</a></li>
  <li><a href='#'>Label Page</a></li>
  <li><a href='#'>Error 404</a></li>
  <li><a class='bars' href='#'>Posts</a>
    <ul class='sub-menu'>
      <li><a href='#'>Posts With Images</a></li>
      <li><a href='#'>Posts With Videos</a></li>
      <li><a href='#'>About Us Page</a></li>
    </ul>
  </li>
  <li><a href='#'>Purchase Template</a></li>
</ul>

3- This is the code of the navigation with 2 dropdown menus and a childern menu for one of the dropdown menu.

<ul class='sf-menu res_mode sf-js-enabled sf-shadow'>
  <li class='active'><a href='/'>Home</a></li>
  <li><a class='bars' href='#'>Menu</a>
    <ul class='sub-menu'>
      <li><a href='#'>Sports</a></li>
      <li><a class='bars' href='#'>Sub Menu 1</a>
        <ul class='sub-menu2'>
          <li><a href='#'>Cars</a></li>
          <li><a href='#'>New HD Movies</a></li>
          <li><a href='#'>Stories Of Success</a></li>
          <li><a href='#'>Authors Life</a></li>
        </ul>
      </li>
      <li><a href='#'>Free Songs</a></li>
      <li><a class='bars' href='#'>Sub Menu 2</a></li>
      <li><a href='#'>Food Types</a></li>
    </ul>
  </li>
  <li><a href='#'>Archive Page</a></li>
  <li><a href='#'>Label Page</a></li>
  <li><a href='#'>Error 404</a></li>
  <li><a class='bars' href='#'>Posts</a>
    <ul class='sub-menu'>
      <li><a href='#'>Posts With Images</a></li>
      <li><a href='#'>Posts With Videos</a></li>
      <li><a href='#'>About Us Page</a></li>
    </ul>
  </li>
  <li><a href='#'>Purchase Template</a></li>
</ul>


2. Social Icons
  1. On Blogger Dashbord Click Template.
  2. Click Edit HTML.
  3. Click Ctrl + F and Search for the following Code:

  4. <div class='social-icons social'><!-- Social Icons -->
      <div class='search_icon toptip' title='search'><i class='fa fa-search'/></div><!-- Don't Edit This Line -->
      <a class='toptip' href='#' rel='nofollow' target='_blank' title='Google+'><i class='fa fa-google-plus'/></a>
      <a class='toptip' href='#' rel='nofollow' target='_blank' title='Facebook'><i class='fa fa-facebook '/></a>
      <a class='toptip' href='#' rel='nofollow' target='_blank' title='Twitter'><i class='fa fa-twitter'/></a>
      <a class='toptip' href='#' rel='nofollow' target='_blank' title='Dribbble'><i class='fa fa-dribbble'/></a>
      <a class='toptip' href='#' rel='nofollow' target='_blank' title='YouTube'><i class='fa fa-youtube'/></a>
      <a class='toptip' href='#' rel='nofollow' target='_blank' title='Contact Us'><i class='fa fa-envelope-o'/></a>
    </div>

  5. Don't Edit This First Line <div class='search_icon toptip' title='search'><i class='fa fa-search'/></div> , Now in the other lines Change # with your links.
  6. Click Save template.
5. Error 404

The page is already integrated with template you don't need to do anything.

But if you would like to edit it's Content Click Ctrl + F and Search for the following Code:

<div class='error-page'><!-- Error 404 Page -->
  <div class='error-title'>
    <i class='fa fa-trash-o'></i> 404 - Page not found
  </div>
  <div class='error-description'>
    <div class='error-line1'>
      The page you are looking for might have been removed,<br/>had its name changed, or is temporarily unavailable
    </div>
    <div class='error-line2'>
      You can Go to <a expr:href='data:blog.homepageUrl'>Home</a> to check it again, Search For It <span class='search_icon toptip' title='search'><i class='fa fa-search'></i></span> or just Contact Us
    </div>
  </div>
</div>
Ar-themes @ 2014