Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

seo How to Add Different Backgrounds In Blogger Pages 2013

Seo Master present to you: In the last tutorial, you learnt How to Add Different Backgrounds in Blogger Posts. Now this tutorial, will show you how you can have a different background for each of your page, thus giving your pages their own unique look. 



How to Add Different Background In Blogger Posts/Pages

Step 1. Log in to your Blogger Dashboard, then go to Template > Edit HTML.



Step 2. Select "Expand Widget Templates"

Step 3. Search (CTRL + F) for this tag:


</head>

Step 4. Just above the </head> tag, paste this code:

<b:if cond='data:blog.url == &quot;http://POST-OR-PAGE-URL.html&quot;'>
<style>
body {
background-image: url(http://DIRECT_LINK_TO_BACKGROUND_IMAGE.com/IMAGE.JPG);background-position: center; background-repeat:repeat; background-attachment: fixed;
}
</style>
</b:if>

Note:
  • Change: http://POST-OR-PAGE-URL.html with the URL address of your blogger post or page where you want the custom background to appear.
  • Change: http://DIRECT_LINK_TO_BACKGROUND_IMAGE.com/IMAGE.JPG with the direct link of your background image.

Step 5. Click on SAVE TEMPLATE and you're done.

2013, By: Seo Master

seo How to Add Different Background Color or Image in Each Blogger Post 2013

Seo Master present to you: When you have multiple authors on a blog and want to make a specific post stand-out, then you can change your posts background color or place a background image behind them, each time is needed. Therefore, this tutorial will show you how to style each post differently by adding some codes in your Blogger posts. (this won't take effect if you have the read more function enabled on your blog)



How to Change the Color of the Post Background

When you create a post, switch to HTML, near the Compose tab and add the following code just at the beginning and at the end of your post content.

<div style="background-color: #DCC368; padding: 5px 8px 5px 8px;">
Your text goes here...
</div>

  • add the red line at the BEGINNING of your post.
  • add the div tag in blue at the END of your post.
  • replace the part in green with your own color (search for color's hex value)
  • "Your text here...." is where the Post content goes

It's done by wrapping your Post content into a "div" element. You can apply this setting anytime to your already published posts as well or you can change/remove it later.

Here's the example of the placed code in the Post Edit box:
blogger posts color, backgrounds, blogger tricks

How to Add a Background Image in a Blogger Post

Add the following code just at the beginning and end of your post content.

<div style="background-image: url(IMAGE-URL-HERE); background-repeat: no-repeat; ">
Your text goes here...
</div>

  • in green, you need to paste the URL address of your hosted picture (use Photobucket, Tinypic etc.)
  • the red line has to be added at the beginning of your post.
  • the blue part has to be added where your post ends.
  • "Your text here...." is where your Post content should be

Now click Publish and you are done.

2013, By: Seo Master

seo Create Horizontal Navigation Menu With Drop Down Submenus Using CSS 2013

Seo Master present to you: The following drop down menu is made only with CSS, is a horizontal menu with sub-tabs and the right side has a rounded search. A menu is handy for those who do not require complex menus or prefer not to use one that requires scripts and/or too many images, also the installation and customization is quite simple, and to top it off is quite functional.

To see this drop down menu in action, visit this demo blog

blogger menu, drop down menu, css menu

Prior to doing anything, if you are using a Template made through Blogger Template Designer, then you should consider doing these changes in the template, otherwise the menu might not be displayed correctly:

From your Blogger's Dashboard, go to Template (make a backup < see the screenshot) > Edit HTML:


and search (CTRL + F) for the following line:

<b:section class='tabs' id='crosscol' maxwidgets='1' showaddelement='yes'>

Screenshot

Remove the code in red.
You may have many parts as the one in red, delete all you find.

....then find this section in your template:
/* Tabs
----------------------------------------------- */

...and remove all that is within it, until you reach to the Headings part.

/* Tabs
----------------------------------------------- */
.tabs-outer {
overflow: hidden;
position: relative;
background: $(tabs.background.color) $(tabs.background.gradient) repeat scroll 0 0;
}

#layout .tabs-outer {
overflow: visible;
}

.tabs-cap-top, .tabs-cap-bottom {
position: absolute;
width: 100%;

border-top: 1px solid $(tabs.border.color);

}

.tabs-cap-bottom {
bottom: 0;
}

.tabs-inner .widget li a {
display: inline-block;

margin: 0;
padding: .6em 1.5em;

font: $(tabs.font);
color: $(tabs.text.color);

border-top: 1px solid $(tabs.border.color);
border-bottom: 1px solid $(tabs.border.color);
border-$startSide: 1px solid $(tabs.border.color);
}

.tabs-inner .widget li:last-child a {
border-$endSide: 1px solid $(tabs.border.color);
}

.tabs-inner .widget li.selected a, .tabs-inner .widget li a:hover {
background: $(tabs.selected.background.color) $(tabs.background.gradient) repeat-x scroll 0 -100px;
color: $(tabs.selected.text.color);
}

/* Headings
----------------------------------------------- */

Then add this to where the code has been removed (instead of the code in green):
#crosscol ul {z-index: 200; padding:0 !important;}
#crosscol li:hover {position:relative;}
#crosscol ul li {padding:0 !important;}
.tabs-outer {z-index:1;}
.tabs .widget ul, .tabs .widget ul {overflow: visible;}
Having done this, we can finally add our menu.

How To Add Horizontal Drop Down Menu to Blogger

To put this horizontal menu with submenus in your blog, then follow the next steps:

Step 1. From Template, go to Edit HTML and just above ]]></b:skin> paste these styles:
/* Horizontal drop down menu
----------------------------------------------- */
#menuWrapper {
width:100%; /* Menu width */
height:35px;
padding-left:14px;
background:#333; /* Background color */
border-radius: 10px; 
}
.menu {
padding:0;
margin:0;
list-style:none;
height:35px;
position:relative;
z-index:5;
font-family:arial, verdana, sans-serif;
}
.menu li:hover li a {
background:none;
}
.menu li.top {display:block; float:left;}
.menu li a.top_link {
display:block;
float:left;
height:35px;
line-height:34px;
color:#ccc;
text-decoration:none;
font-family:"Verdana", sans-serif;
font-size:12px; /* Font size */
font-weight:bold;
padding:0 0 0 12px;
cursor:pointer;
}
.menu li a.top_link span {
float:left;
display:block;
padding:0 24px 0 12px;
height:35px;
}
.menu li a.top_link span.down {
float:left;
display:block;
padding:0 24px 0 12px;
height:35px;
}
.menu li a.top_link:hover, .menu li:hover > a.top_link {color:#fff; }
.menu li:hover {position:relative; z-index:2;}
.menu ul,
.menu li:hover ul ul,
.menu li:hover ul li:hover ul ul,
.menu li:hover ul li:hover ul li:hover ul ul,
.menu li:hover ul li:hover ul li:hover ul li:hover ul ul
{position:absolute; left:-9999px; top:-9999px; width:0; height:0; margin:0; padding:0; list-style:none;}

.menu li:hover ul.sub {
left:0;
top:35px;
background:#333; /* Submenu background color */
padding:3px;
white-space:nowrap;
width:200px;
height:auto;
z-index:3;
}
.menu li:hover ul.sub li {
display:block;
height:30px;
position:relative;
float:left;
width:200px;
font-weight:normal;
}
.menu li:hover ul.sub li a{
display:block;
height:30px;
width:200px;
line-height:30px;
text-indent:5px;
color:#ccc;
text-decoration:none;
}
.menu li ul.sub li a.fly {
/* Submenu Background Color */
background:#333 url(http://www.matrixar.com/-38QeToUdU48/UWmqpRNO-LI/AAAAAAAADP4/A4AJhnSm0Fg/s1600/arrow_over.gif) 185px 10px no-repeat;}
.menu li:hover ul.sub li a:hover {
background:#515151; /* Background Color on mouseover */
color:#fff;
}
.menu li:hover ul.sub li a.fly:hover, .menu li:hover ul li:hover > a.fly {
/* Background on Mouseover */
background:#646464 url(http://www.matrixar.com/-38QeToUdU48/UWmqpRNO-LI/AAAAAAAADP4/A4AJhnSm0Fg/s1600/arrow_over.gif) 185px 10px no-repeat; color:#fff;}

.menu li:hover ul li:hover ul,
.menu li:hover ul li:hover ul li:hover ul,
.menu li:hover ul li:hover ul li:hover ul li:hover ul,
.menu li:hover ul li:hover ul li:hover ul li:hover ul li:hover ul {
left:200px;
top:-4px;
background: #333; /* Background Color of the Submenu */
padding:3px;
white-space:nowrap;
width:200px;
z-index:4;
height:auto;
}
#search {
width: 228px; /* Width of the Search Box */
height: 50px;
float: right;
z-index: 2;
text-align: center;
margin-top: 5px;
margin-right: 6px;
/* Background of the Search Box */
background: url(http://www.matrixar.com/-kSPW07r2Ct8/UazXPD9DbfI/AAAAAAAADtE/UyopBgIPe-w/s1600/searchBar1.png) no-repeat;
}
#search-box {
margin-top: 3px;
border:0px;
background: transparent;
text-align:center;
}


Screenshot
Step 2. Save the Template


Step 3. Go to Layout > click on Add a Gadget link


Step 4. Choose HTML/Javascript and paste the following inside the empty box:

<div id='menuWrapper'>
<ul class='menu'>
<li class='top'><a class='top_link' href='Link URL'><span>Title 1</span></a></li>

<li class='top'><a class='top_link' href='Link URL'><span class='down'>Title 2</span></a><ul class='sub'><li><a class='fly' href='Link URL'>Submenu 2.1</a><ul>
<li><a href='Link URL'>Submenu 2.1.1</a></li>
<li><a href='Link URL'>Submenu 2.1.2</a></li>
<li><a href='Link URL'>Submenu 2.1.3</a></li>
</ul>
</li>
<li class='mid'><a class='fly' href='Link URL'>Submenu 2.2</a>
<ul>
<li><a href='Link URL'>Submenu 2.2.1</a></li>
<li><a href='Link URL'>Submenu 2.2.2</a></li>
<li><a href='Link URL'>Submenu 2.2.3</a></li>
<li><a class='fly' href='Link URL'>Submenu 2.2.4</a>
<ul>
<li><a href='Link URL'>Submenu 2.2.4.1</a></li>
<li><a href='Link URL'>Submenu 2.2.4.2</a></li>
<li><a href='Link URL'>Submenu 2.2.4.3</a></li>
</ul>
</li>
<li><a href='Link URL'>Submenu 2.2.5</a></li>
<li><a class='fly' href='Link URL'>Submenu 2.2.6</a>
<ul>
<li><a href='Link URL'>Submenu 2.2.6.1</a></li>
<li><a href='Link URL'>Submenu 2.2.6.2</a></li>
</ul>
</li>
</ul>
</li>
<li><a href='Link URL'>Submenu 2.3</a></li>
<li><a href='Link URL'>Submenu 2.4</a></li>
<li><a href='Link URL'>Submenu 2.5</a></li>
</ul>
</li>

<li class='top'><a class='top_link' href='Link URL'><span class='down'>Title 3</span></a>
<ul class='sub'>
<li><a href='Link URL'>Submenu 3.1</a></li>
<li><a href='Link URL'>Submenu 3.2</a></li>
<li><a href='Link URL'>Submenu 3.3</a></li>
<li><a href='Link URL'>Submenu 3.4</a></li>
</ul>
</li>

<li class='top'><a class='top_link' href='Link URL'><span class='down'>Title 4</span></a>
<ul class='sub'>
<li><a href='Link URL'>Submenu 4.1</a></li>
<li><a class='fly' href='Link URL'>Submenu 4.2</a>
<ul>
<li><a href='Link URL'>Submenu 4.2.1</a></li>
<li><a href='Link URL'>Submenu 4.2.2</a></li>
<li><a href='Link URL'>Submenu 4.2.3</a></li>
<li><a href='Link URL'>Submenu 4.2.4</a></li>
<li><a href='Link URL'>Submenu 4.2.5</a></li>
<li><a href='Link URL'>Submenu 4.2.6</a></li>
</ul>
</li>
<li><a href='Link URL'>Submenu 4.3</a></li>
<li><a href='Link URL'>Submenu 4.4</a></li>
<li><a href='Link URL'>Submenu 4.5</a></li>
<li><a href='Link URL'>Submenu 4.6</a></li>
</ul>
</li>

<li class='top'><a class='top_link' href='Link URL'><span class='down'>Title 5</span></a>
<ul class='sub'>
<li><a href='Link URL'>Submenu 5.1</a></li>
<li><a href='Link URL'>Submenu 5.2</a></li>
<li><a href='Link URL'>Submenu 5.3</a></li>
</ul>
</li>


<!-- Search Bar -->
<li>
<form action='/search' id='search' method='get' name='searchForm' style='display:inline;'>
<input id='search-box' name='q' onblur='if (this.value == &quot;&quot;) this.value = &quot;Search here...&quot;;' onfocus='if (this.value == &quot;Search here...&quot;) this.value = &quot;&quot;;' size='28' type='text' value='Search here...'/></form>
</li>

</ul>
</div>

Customization:

- replace the text in blue and red with your links and titles.
- if you need more tabs, then add a line like this just above <!-- Search Bar -->

<li class="top"><a href="Link URL" class="top_link"><span>Title</span></a></li>

- if you want to add a tab with sub-tabs, then add this code:

<li class="top"><a href="Link URL" class="top_link"><span class="down">Title</span></a>
<ul class="sub">
<li><a href="Link URL">Submenu Title</a></li>
<li><a href="Link URL">Submenu Title</a></li>
<li><a href="Link URL">Submenu Title</a></li>
</ul>
</li>

- and if you want one of the other sub-tabs have sub-tabs then remove a line like the one in orange and change it to a code like this:

<li><a href="Link URL" class="fly">Submenu Title</a>
<ul>
<li><a href="Link URL">Other Submenu</a></li>
<li><a href="Link URL">Other Submenu</a></li>
<li><a href="Link URL">Other Submenu</a></li>
</ul>
</li>

And that's it! Now Save your Widget and enjoy your new drop down menu! ;) 2013, By: Seo Master

seo How To Disable or Turn Off Lightbox View For Blogger Images 2013

Seo Master present to you:
When you click on your images or photos, a wide black iframe window opens without leaving the page and shows you the image in foreground. This Lightbox (also called as Greybox or thickbox) view effect is enabled for all Blogger blogs by default, and it can be found also on Facebook and Google +. However, for some people this effect has turned into a headache and some may prefer to turn it off.

How to disable Lightbox view?
  • Log in to your Blogger Dashboard 
  • Go to Settings > Posts and comments  
  • Look for the "Showcase images with Lightbox" and select "No".




Save your Settings and you're done!
2013, By: Seo Master

seo How to add an image next to Blogger Post Title 2013

Seo Master present to you:
blogger posts, gadgets for blogger, blogger tutorials

It has often been said that a picture says a thousand words, so in the struggle for the attention of the reader, we can add a picture or an icon to our post title, as I have put in the title of the post in the screenshot above.

Show Image Icon before Blogger Post Title

Step 1:

First thing first you have to do is to prepare an image. After that you'll need a direct link to an image before you proceed further. You can upload it to tinypic.com and copy the URL located in the Direct Link for Layouts box. Also, make sure your image is sized appropriately. You don't want to see a huge image next to your post title.

Step 2: Go to Dashboard - Template - Edit HTML - Proceed if needed
    Step 3. Click anywhere inside the code area to find (using CTRL + F) the following code:
    <b:includable id='post' var='post'>
    Step 4. After you found it, click on the left arrow next to it to expand the widget's code


    Step 5. Then delete it until you reach to <div class='post-header'>:
                  <b:includable id='post' var='post'>
      <div class='post hentry' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>
        <b:if cond='data:post.firstImageUrl'>
          <meta expr:content='data:post.firstImageUrl' itemprop='image_url'/>
        </b:if>
        <meta expr:content='data:blog.blogId' itemprop='blogId'/>
        <meta expr:content='data:post.id' itemprop='postId'/>

        <a expr:name='data:post.id'/>
        <b:if cond='data:post.title'>
          <h3 class='post-title entry-title' itemprop='name'>
          <b:if cond='data:post.link'>
            <a expr:href='data:post.link'><data:post.title/></a>
          <b:else/>
            <b:if cond='data:post.url'>
              <b:if cond='data:blog.url != data:post.url'>
                <a expr:href='data:post.url'><data:post.title/></a>
              <b:else/>
                <data:post.title/>
              </b:if>
            <b:else/>
              <data:post.title/>
            </b:if>
          </b:if>
          </h3>
        </b:if>
    The code to be deleted:


    Step 6:

    Paste the following code in the place of the deleted code in Step 5:
    <b:includable id='post' var='post'>
      <div class='post hentry' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>
        <b:if cond='data:post.firstImageUrl'>
          <meta expr:content='data:post.firstImageUrl' itemprop='image_url'/>
        </b:if>
        <meta expr:content='data:blog.blogId' itemprop='blogId'/>
        <meta expr:content='data:post.id' itemprop='postId'/>

        <a expr:name='data:post.id'/>
        <b:if cond='data:post.title'>
          <table><tr>
            <td class='posttitle'>
               <img src='IMAGE-URL'/></td>
            <td><h3 class='post-title entry-title' itemprop='name'>
          <b:if cond='data:post.link'>
            <a expr:href='data:post.link'><data:post.title/></a>
          <b:else/>
            <b:if cond='data:post.url'>
              <b:if cond='data:blog.url != data:post.url'>
                <a expr:href='data:post.url'><data:post.title/></a>
              <b:else/>
                <data:post.title/>
              </b:if>
            <b:else/>
              <data:post.title/>
            </b:if>
          </b:if>
          </h3>
            </td>
            </tr></table>
         
          <style>
            h3.post-title {
              margin: 0px !important;
            }
          </style>
       
        </b:if>

    Step 7:

    Replace the IMAGE-URL text in blue color from above with the URL address of your image (the one that you've gotten from Step 1).

    Step 8: Save the Template and that's it! Enjoy :)2013, By: Seo Master

    seo How to remove Blogger Picture/Image Shadow and Border 2013

    Seo Master present to you: If you want to get rid of those annoying shadows and borders around blogger images, then follow the next steps (see the difference in the screenshot below):
    If you are using the old Blogger interface:
    • Go to Dashboard - Design - Template Designer - Advanced - Add CSS - paste the following code - Press enter after the last character of the last line } - Apply to Blog.

    If you are using the new Blogger interface:
    • Go to Dashboard - Template - Customize - Advanced - Add CSS - paste the following code - Press enter after the last character of the last line } - Apply to Blog.

    .post-body img, .post-body .tr-caption-container, .Profile img, .Image img,
    .BlogList .item-thumbnail img {
      padding: none !important;
      border: none !important;
      background: none !important;
      -moz-box-shadow: 0px 0px 0px transparent !important;
      -webkit-box-shadow: 0px 0px 0px transparent !important;
      box-shadow: 0px 0px 0px transparent !important;
    }

    Now your blogger images should appear without any border or shadow. Cheers!

    Update:

    If the above method doesn't work for you, do the following:

    - Go to Blogger's Dashboard > Design (Layout) > Edit HTML
    - Thick the "Expand widget templates" checkbox;
    - Search (CTRL + F) for the following code:

      border: 1px solid $(image.border.color);

      -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
      -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
      box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);

    - Delete it and Save your template.
    2013, By: Seo Master

    seo Replace Older, Newer And Home Blogger links with an image or text 2013

    Seo Master present to you: Newer Post, Home and Older Post are links that appear on the bottom of the posts. When a visitor click on one of these links, they will take him to the page with the list of your previous posts.
    The number of the posts on these pages will be the same as the number of the posts on your main page.


    What we can do:

    A. Change the text of Newer, Older, Home links
    B. Place a picture beside them (a small icon, arrow, or whatever...)
    C. Add an image instead of the links

    So let's start customizing them...

    1. Log in to your Blogger Dashboard, go to Template > Edit HTML

    2. Click anywhere inside the code area and find - using CTRL + F keys - the following code:
        <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'><data:newerPageTitle/></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'><data:olderPageTitle/></a>
          </span>
        </b:if>

        <a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>
    Or find in this code the following fragments which corresponds to each page links
    • <data:newerPageTitle/> represents Newer Posts link
    • <data:olderPageTitle/> represents Older Posts link
    • <data:homeMsg/> represents Home link

    Now change these fragments of codes as it follows:

    A. Change the text of Newer Posts, Older Posts and Home Links


    You need to REPLACE following parts in original code with ANY TEXT you like:
    • replace <data:newerPageTitle/> with, for example NEXT POST 
    • replace <data:olderPageTitle/> with, for example PREVIOUS POST
    • replace <data:homeMsg/> (only the first one) with, for example HOMEPAGE

      B. Place a picture beside Newer Posts, Older Posts and Home links


      Add the below code just at the beginning of each of the colored fragments of codes from step 2.
      <img src="URL Address"/>

      So it should look like this:
      <img src="URL Address"/><data:newerPageTitle/>
      Note: Replace URL Address text with the url address of the image you want to appear

      C. Replace Older Posts, Newer Posts and Home links with an image/picture


      You can place any kind of picture you want All you have to do is use this code for the pic:
      <img src="URL ADDRESS"/>
      ...just replace URL ADDRESS, with the URL of your hosted picture
      ...and in code, REPLACE the original link code for text with picture code
      • replace <data:newerPageTitle/> with the pic for newer (next) posts
      • replace <data:olderPageTitle/> with the pic for older (previous) posts
      • replace <data:homeMsg/> (only the first one) with the pic for homepage
      Screenshot
      blogger tricks, older posts, newer posts

      3. That's it! Preview and Save the Template.2013, By: Seo Master

      seo Amazing Examples To Customize Blockquote Style In Blogger/Blogspot 2013

      Seo Master present to you: Add awesome designs, backgrounds and CSS3 effects for displaying HTML, CSS and other codes in blogger posts using CSS and CSS3. Just follow these steps:

      Step 1. Go to design > Edit HTML > check the "Expand widget templates" box

      Step 2. Search for this piece of code:

      </head>

      Step 3. Just above it, paste the following code:

      <link href='http://helplogger.googlecode.com/svn/trunk/css/blockquotes/styles.css' rel='stylesheet' type='text/css'/>

      Step 4. Save the Template

      Now everytime you create a post, switch to Edit HTML tab, choose the syle you like and add the red codes below to the beginning and end of the text you want to quote. See the screenshot below:


      Here are the available designs:

      Example 1:

      Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.

      <div class="code1"> YOUR TEXT HERE </div>

      Example 2

      Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.

      <div class="code2"> YOUR TEXT HERE </div>

      Example 3:

      Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.

      <div class="code3"> YOUR TEXT HERE </div>

      Example 4:

      Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.

      <div class="code4"> YOUR TEXT HERE </div>

      Example 5:

      Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.

      <div class="code5"><div class="code-5"> YOUR TEXT HERE </div></div>

      Example 6


      Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.

      <div class="code6"> YOUR TEXT HERE </div>


      Enjoy!2013, By: Seo Master

      seo Related Posts Widget with Thumbnails and Summary for Blogger 2013

      Seo Master present to you: There are several tutorials quite old which have explained different methods for displaying related posts in Blogger [1] [2] but in this tutorial, I will show you how to implement a very beautiful Related Posts widget that comes along with Thumbnails and Posts Snippets, as well. If you want to add it, follow the next steps below:

      How to Add Related Posts Widget with Summary to Blogger

      Step 1. From your Blogger Dashboard, go to Template and click on Edit HTML


      Step 2. Tick the "Expand Widget Templates" checkbox:
       Step 3. Find (CTRL + F) this tag:

      </head>

      ...and paste the following code just above it:

      <script type='text/javascript'>
      //<![CDATA[
      var relatedTitles = new Array();
      var relatedUrls = new Array();
      var relatedpSummary = new Array();
      var relatedThumb = new Array();
      var relatedTitlesNum = 0;

      var relatedPostsNum = 4; // number of entries to be shown
      var relatedmaxnum = 75; // the number of characters of summary
      var relatednoimage = "http://www.matrixar.com/-PpjfsStySz0/UF91FE7rxfI/AAAAAAAACl8/092MmUHSFQ0/s1600/no_image.jpg"; // default picture for entries with no image

      function readpostlabels(json) {
        var entry, postimg, postcontent, cat;
        for (var i = 0; i < json.feed.entry.length; i++) {
          entry = json.feed.entry[i];
          if (i==json.feed.entry.length) { break; }
          relatedTitles[relatedTitlesNum] = entry.title.$t;
          postcontent = "";
          if ("content" in entry) {
            postcontent = entry.content.$t;
          } else if ("summary" in entry) {
            postcontent = entry.summary.$t;
          }
          relatedpSummary[relatedTitlesNum] = removetags(postcontent,relatedmaxnum);
          if ("media$thumbnail" in entry) {
            postimg = entry.media$thumbnail.url;
          } else {
            postimg = relatednoimage;
          }
          relatedThumb[relatedTitlesNum] = postimg;
          for (var k = 0; k < entry.link.length; k++) {
            if (entry.link[k].rel == 'alternate') {
              relatedUrls[relatedTitlesNum] = entry.link[k].href;
              break;
            }
          }
          relatedTitlesNum++;
        }
      }
      function showrelated() {
        var tmp = new Array(0);
        var tmp2 = new Array(0);
        var tmp3 = new Array(0);
        var tmp4 = new Array(0);
        for(var i = 0; i < relatedUrls.length; i++) {
          if(!contains(tmp, relatedUrls[i])) {
            tmp.length += 1; tmp[tmp.length - 1] = relatedUrls[i];
            tmp2.length += 1; tmp2[tmp2.length - 1] = relatedTitles[i];
            tmp3.length += 1; tmp3[tmp3.length - 1] = relatedpSummary[i];
            tmp4.length += 1; tmp4[tmp4.length - 1] = relatedThumb[i];
          }
        }
        relatedTitles = tmp2; relatedUrls = tmp; relatedpSummary = tmp3; relatedThumb = tmp4;
        for(var i = 0; i < relatedTitles.length; i++){
          var index = Math.floor((relatedTitles.length - 1) * Math.random());
          var tempTitle = relatedTitles[i]; var tempUrls = relatedUrls[i];
          var tempResum = relatedpSummary[i]; var tempImage = relatedThumb[i];
          relatedTitles[i] = relatedTitles[index]; relatedUrls[i] = relatedUrls[index];
          relatedpSummary[i] = relatedpSummary[index]; relatedThumb[i] = relatedThumb[index];
          relatedTitles[index] = tempTitle; relatedUrls[index] = tempUrls;
          relatedpSummary[index] = tempResum; relatedThumb[index] = tempImage;
        }
        var somePosts = 0;
        var r = Math.floor((relatedTitles.length - 1) * Math.random());
        var relsump = r;
        var output;
        var dirURL = document.URL;

        while (somePosts < relatedPostsNum) {
          if (relatedUrls[r] != dirURL) {

            output = "<div class='relatedsumposts'>";
            output += "<a href='" + relatedUrls[r] + "' rel='nofollow'  target='_self' title='" + relatedTitles[r] + "'><img src='" + relatedThumb[r] + "' /></a>";
            output += "<h6><a href='" + relatedUrls[r] + "' target='_self'>" + relatedTitles[r] + "</a></h6>";
            output += "<p>" + relatedpSummary[r] + " ... </p>";
            output += "</div>";
            document.write(output);
           
            somePosts++;
            if (somePosts == relatedPostsNum) { break; }
          }
          if (r < relatedTitles.length - 1) {

            r++;
          } else {
           
            r = 0;
          }

          if(r==relsump) { break; }
        }
      }
      function removetags(text,length){
        var pSummary = text.split("<");
        for(var i=0;i<pSummary.length;i++){
          if(pSummary[i].indexOf(">")!=-1){
            pSummary[i] = pSummary[i].substring(pSummary[i].indexOf(">")+1,pSummary[i].length);
          }
        }
        pSummary = pSummary.join("");
        pSummary = pSummary.substring(0,length-1);
        return pSummary;
      }
      function contains(a, e) {
        for(var j = 0; j < a.length; j++) if (a[j]==e) return true;
        return false;
      }
      //]]>
      </script>

      Note:  
      • To change the number of posts that are being displayed, modify the value in red (4)
      • To change the number of characters to be shown in posts summary, modify the value in green (75)
      • To change the default pic for posts with no images, add your URL instead of the one marked in blue

      Step 4. Search (CTRL + F) for the following fragment:

      <a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != &quot;true&quot;'>,</b:if>

      ... and add this code just below it:

      <b:if cond='data:blog.pageType == &quot;item&quot;'>
          <script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=readpostlabels&amp;max-results=50&quot;' type='text/javascript'/>
        </b:if>

      The entire fragment should look like this:

                <b:loop values='data:post.labels' var='label'>
                  <a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != &quot;true&quot;'>,</b:if>
      <b:if cond='data:blog.pageType == &quot;item&quot;'>
          <script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=readpostlabels&amp;max-results=50&quot;' type='text/javascript'/>
        </b:if>

                </b:loop>

      Step 5. Find this fragment of code:

      </b:includable>
      <b:includable id='postQuickEdit' var='post'>

      Note: if you can't find it, then search only for the code in red

      ! Click on the sideways arrow to expand the code, then scroll down until you reach to the highlighted line !

      ...add just ABOVE it, add the following:

      <b:if cond='data:blog.pageType == &quot;item&quot;'>
        <div class='post-footer-line post-footer-line-4'>
          <div id='relatedpostssum'><div style='text-align: left; font-size: 15px; margin-bottom: 10px; font-weight: bold;'>RELATED POSTS</div>
            <script type='text/javascript'>showrelated();</script>
          </div>
          <div style='clear:both;'/>
        </div>
      </b:if>

      Screenshot

      Step 6. Let's go ahead and add some styles to our CSS... search for this tag:

      ]]></b:skin>

      ...and paste the below code just ABOVE it:

      .relatedsumposts {
        float: left;
        margin: 0px 5px;
        overflow: hidden;
        text-align: center;
        /* width and height of the related posts area */
        width: 120px;
        height: 210px;
      }

      .relatedsumposts:hover {
      background-color: #F3F3F3; -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      border-radius: 10px;
      }

      .relatedsumposts img:hover {
      -khtml-opacity:0.4;
      -moz-opacity:0.4;
      opacity:0.4;
      }

      .relatedsumposts a {
        /* link properties */
      color: #linkcolor;
        display: inline;
        font-size: 10px;
        line-height: 1;
      }
      .relatedsumposts img {
        /* thumbnail properties */
      margin-top: 2px;
        height: 82px;
        padding: 5px;
        width: 82px;
      border: 1px solid #fff;
      -webkit-border-radius: 100px;
      -moz-border-radius: 100px;
      border-radius: 100px;
      -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
      -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
      box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
      }
      .relatedsumposts h6 {
        /* title properties */
        display: table-cell;
        height: 5em;
        margin: 5px 0 0;
        overflow: hidden;
        padding-bottom: 2px;
        vertical-align: middle;
        width: 130px;
      }

      .relatedsumposts p {
        /* summary properties */
      border-top: 1px dotted #777777;
      border-bottom: 1px dotted #777777;
      color: #summarycolor;
        font-size: 10px;
        height: 4em;
        line-height: 1;
        margin: 5px 0 0;
        overflow: hidden;
        padding: 5px 0 15px 0;
        text-align: left;
      }

      Note:  
      • Modify the values in red to adjust the width (120) and height (210) of the widget area
      • Replace #linkcolor with the hex value of your color to change the color of post titles
      • To change the size of thumbnails, modify the values marked in violet (82)
      • To determine the border roundness, modify the values in orange (100)
      • To change the color of the post snippet, change #summarycolor with color hex value

      Step 7. Save your Template... and hopefully we're done...

      Enjoy!2013, By: Seo Master

      seo How To Add Related Posts Widget To Blogger with Thumbnails 2013

      Seo Master present to you: Now here is a wonderful hack for displaying related posts beneath each of your blog posts, along with thumbnails. The related articles are chosen from other posts in that same category/label/tag. With this hack many of your readers will remain on your site for longer periods of time when they see related posts of interest.
      related post, related posts blogger, blogger widgets

      Steps adding the Related Posts Widget to Blogger/Blogspot

      Step 1. Go To Blogger Dashboard >> Template >>Edit HTML;

      Step 2. Check the "Expand widgets template" box;

      Step 3. Search (CTRL + F) for this piece of code:

      </head>

      Step 4. Copy and paste the below code just before/above </head>


      <!--Related Posts with thumbnails Scripts and Styles Start-->
      <!-- remove --><b:if cond='data:blog.pageType == &quot;item&quot;'>
      <style type='text/css'>
      #related-posts {
      float:center;
      text-transform:none;
      height:100%;
      min-height:100%;
      padding-top:5px;
      padding-left:5px;
      }

      #related-posts h2{
      font-size: 18px;
      letter-spacing: 2px;
      font-weight: bold;
      text-transform: none;
      color: #5D5D5D;
      font-family: Arial Narrow;
      margin-bottom: 0.75em;
      margin-top: 0em;
      padding-top: 0em;
      }
      #related-posts a{
      border-right: 1px dotted #DDDDDD;
      color:#5D5D5D;
      }
      #related-posts a:hover{
      color:black;
      background-color:#EDEDEF;
      }
      </style>
      <script type='text/javascript'>
      var defaultnoimage=&quot;http://www.matrixar.com/-PpjfsStySz0/UF91FE7rxfI/AAAAAAAACl8/092MmUHSFQ0/s1600/no_image.jpg&quot;;
      var maxresults=5;
      var splittercolor=&quot;#DDDDDD&quot;;
      var relatedpoststitle=&quot;Related Posts&quot;;
      </script>
      <script src='http://helplogger.googlecode.com/svn/trunk/related-posts-with-big-thumbnails.js' type='text/javascript'/>
      <!-- remove --></b:if>
      <!--Related Posts with thumbnails Scripts and Styles End-->

      Note:
      - to change the default picture, replace the URL in blue with your own
      - for displaying more than 5 posts, replace 5 value from "var maxresults=5;"
      - remove the code in violet if you want the related posts to be displayed in homepage too

      Step 5. Now find the following code:

          <div class='post-footer'>

      Step 6. And just above it, copy and paste the below code:

      <!-- Related Posts with Thumbnails Code Start-->
      <!-- remove --><b:if cond='data:blog.pageType == &quot;item&quot;'>
      <div id='related-posts'>
      <b:loop values='data:post.labels' var='label'>
      <b:if cond='data:label.isLast != &quot;true&quot;'>
      </b:if>
      <script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=related_results_labels_thumbs&amp;max-results=6&quot;' type='text/javascript'/></b:loop>
      <script type='text/javascript'>
      removeRelatedDuplicates_thumbs();
      printRelatedLabels_thumbs(&quot;<data:post.url/>&quot;);
      </script>
      </div><div style='clear:both'/>
      <!-- remove --></b:if>
      <b:if cond='data:blog.url == data:blog.homepageUrl'><b:if cond='data:post.isFirstPost'>
      <a href='http://www.matrixar.com'><img alt='Blogger Tricks' src='http://www.matrixar.com/-K65p5zLLKQk/T3ObCINoP7I/AAAAAAAABmI/dF84-alnOu4/s1600/best+blogger+tips.png'/></a>
      </b:if></b:if>
      <!-- Related Posts with Thumbnails Code End-->

      Note:
      - change the 6 value from max-results=with the number of posts you want to be displayed.
      - If you want the related posts to be displayed on homepage too, remove the code in violet.

      Step 7. Save the Template

      Enjoy :)

      Credit goes to: bloggerpluggins.org . Modified by me2013, By: Seo Master

      seo How to change Blogger "Post A Comment" Message 2013

      Seo Master present to you: In this tutorial i will show you how to replace the 'Post A Comment' text that appears above the comment form with an image. Also, I will make available to you a few cool images or you can add your own image if you like... so let's get started.



      How to replace Post a Comment with an image

      To replace  "Post A Comment" message in your Blogger / Blogspot blog follow the next steps:

      Step 1. Log in to Blogger, go to your Blogger Dashboard >> Design >> Edit HTML

      Step 2. Tick the "Expand Widget Templates" checkbox.

      Step 3. Now search (CTRL + F) for the code marked in red:

      <a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>
      <data:postCommentMsg/></a>


      ...and for this one too:

      <h4 id='comment-post-message'><data:postCommentMsg/></h4>

      Step 4. Replace <data:postCommentMsg/> with one of the below images codes:


      <img src="http://www.matrixar.com/-DuwsWbCqRag/T3Mxtrye2zI/AAAAAAAABkA/AqMIP-ybAWQ/s1600/leave+a+comment.png" />


      <img src="http://www.matrixar.com/-gQV9PoM4FeA/T3M1tOg6C3I/AAAAAAAABkI/OTq4DAbkEPo/s1600/Post+a+comment+blogger.png" />


      <img src="http://www.matrixar.com/-wX61ZaQ1piI/T3M3FKUaGhI/AAAAAAAABkQ/y409edvuAQA/s1600/animated+comment+arrow.gif" />


      <img src="http://www.matrixar.com/-bIOcD7FxKXw/T3M4LpQ0XFI/AAAAAAAABkg/z_sHmmnKwgs/s1600/leave+a+comment2.png" />


      <img src="http://www.matrixar.com/-0j9qVbZuAtc/T3M6HP2tT6I/AAAAAAAABkw/imDcGGmxOiU/s1600/comment.gif" />

      You can use your own image instead. Just upload your image on Blogger, switch to Edit HTML tab, copy the image code and replace <data:postCommentMsg/> with your code.

      UPDATE! Step 5. The first steps will replace the text only when there are no comments available. To show the image each time new comments are added, we should add the code of the image we want to appear after the 4th of the below code (search 4 times for it):

      <p><data:blogCommentMessage/></p>

      Step 6. Save Your Template.


      Thats it! I hope you like your new comment form !2013, By: Seo Master

      seo How To Remove Blogger Attribution Gadget 2013

      Seo Master present to you: The Attribution gadget is the gadget in the footer that says "Powered By Blogger". If you have tried to remove this then you may of noticed this gadget is locked into you blog. To unlock it, follow the next steps:
      blogger attribution, blogger hacks, powered by

      Step 1. Log in to your Dashboard, go to Template > Edit HTML

      blogger tricks, blogger hacks,

      Step 2. Check the "Expand Widget Templates" box


      Step 3. Search (CTRL+ F) for this code:

      <b:widget id='Attribution1' locked='true' title='' type='Attribution'>

      Step 4. Replace true with false

      Step 5. Click on the Save Template button

      Now attribution gadget is unlocked and it can be removed. Just go to:

      • Layout and click on the edit link from Attribution gadget:
      • Click on the Remove button - as you can see in the screenshot below:
      That was all !2013, By: Seo Master

      seo CSS Basics. How to Apply Rounded Corners On Images #2 2013

      Seo Master present to you: blogger tricks, css tricks, border radiusIn the previous post I have mentioned that we will learn to round images using CSS, without needing to edit them one by one using a program. Now that we have seen the basics of CSS, let's try to apply to some images.

      What we will do is to upload an image as normal (HTML) and then add some rules in our style sheet that will transform the outer shape as a circle... or at least to appear round. This will depend on the proportions of image that we use.

      In fact, we can apply this effect to any image, to all of an area or to all in our blog. That depends on your tastes.

      Marking up HTML

      Obviously the first thing we need for in order to round an image is an idem. The code could be more complicated, but an image is built within the img tag and basically looks like this:

      <img src="image_URL"/>

      Screenshot:




      This is how we make it look something like the one from the left. Normally, it should also keep an alt text and sometimes it carries some forced dimensions (with width and/or height). When you upload an image, the code inside the Blogger editor also contains a link that is pointing to the original image.

      But if we want to modify this image using CSS, we need to incorporate a class selector. We can add it in two ways: within the img tag or to a parent box. The name that I have chosen for the selector is roundedcorners:

      <img class="roundedcorners" src="image_URL"/>


      <div class="roundedcorners">
      <img src="image_URL"/>
      </div>


      Applying style to all homogeneous elements

      But that selector alone will do nothing. It needs to be linked to a style rule that tells what to do with it. As much as we add classes, if these are not defined in the CSS, the appearance of the image (or a certain element) will not change.

      To change the shape of all the images on our blog, this would be what we should add to our CSS:

      img {
      border: 2px solid #BADA55;
      margin: 0;
      padding: 0;
      border-radius: 900px;
      -moz-border-radius: 900px;
      }

      And how it translates to your browser? As follows:

      Search for images by name tag (img) and apply the following style:
      • a solid green border of 2 pixels
      • margins (space outside the border) and padding (space inside the border) is set to zero
      • the image is round at the four corners

      Now that we have this rule in our style sheet itself, we can see the picture as we wanted - see the example on the right.

      To declare a property correctly, we need to know what it does and how to write and you can find more info in many places, although W3C is the authority in this.

      For example border-radius requires initially 4 values reading from left to right that represent the roundness of the upper-left, upper-right, lower-right and lower-left corner. If you put a single value is understood that all four will be equal to that.

      You should also know that when the value of the border exceeds the dimensions of the box, this border is adapted to form a circle.

      How to Apply Style to the Elements of the Same Block

      But surely we do not want all the blog images to be round, but only those that we choose, otherwise adding the above style in the head tag will make all of our blog images to take this shape. Before we used an HTML tag (img) and not a selector and that is why the style will affect all images.

      To avoid this, we can do one of the things we saw at the beginning and that was to put the image inside a div with the roundedcorners class. In this way, only the images that are in a box with that class will be affected by the rule that will make them round.

      <div class="roundedcorners"><img src="image_URL"/></div>

      But the rule then should not attack the img tag directly, but the roundedcorners selector. In this case, you should write it like this:

      .roundedcorners img {
      border: 2px solid #BADA55;
      ....
      }

      This means that this style applies only to images that are in a box with roundedcorners class.

      Epilogue

      To close the subtopic of rounding images, you have to keep in mind that if these are not square, instead of becoming circular, they will look oval.


      To fix this we should add the width and height with the same measure (value in pixels), that is to force the image cropping and to make it appear perfectly circular. That was all!

      If you enjoy reading this blog, please share and subscribe. For any questions, drop a comment below ;)2013, By: Seo Master

      seo CSS Basics. How to Apply Rounded Corners On Images #1 2013

      Seo Master present to you: This tutorial will explain how to change the outside border of any image using some simple CSS rules to make it round, but this is so easy to do, that I'm finally going to make this entry for other purposes.
      rounded corners, css tricks, blogger tricks, blogger design
      The trick today that I'm going to publish in two parts is to help to understand at least a little of what CSS (Cascading Style Sheets) is. But very briefly that I'm not able to do a good comprehensive manual on the subject. For those who want to see a bit more, take a look at this link and for those who really want to learn thoroughly, I recommend to visit this site.

      Introduction and terminology

      Style sheets aim to help sort out what is the structure of a website and which is its format, its appearance. Thus, the CSS box model is essentially a box that wraps around HTML elements, and it dictates how those boxes are presented in terms of colors, fonts, width, backgrounds etc.

      The advantage is that if in the future we decide to change something, we don't have to change all the pages one by one, but simply change the properties of one kind or another box from the style sheet and these changes will automatically apply in all the pages.

      The style sheet is a set of rules, in turn composed of selectors and declarations. The selector is to be used as a nickname or name of what you want to configure from the sheet and apply to the HTML and declarations are properties that are assigned to the desired values ​​(more information on CSS syntax)

      Adding the CSS selector

      Once we put for example the one above in our style sheet, we see that in our website... nothing happens. I said that the selector is what relates HTML and CSS so that if we want a box to take these values ​​for width, background color, border and font size (that's what we defined earlier), we need to include the selector, thus:

      <div class="SelectorName">Text here</div>

      What we have added is a rule that tells the browser to interpret that this box has to be of a certain type or class. A class that was mentioned earlier is called selector having some specific properties and values ​​defined in the style sheet.

      Now we'll see how this will change the look of the box, while all others that don't have the SelectorName  name will follow the standard appearance.

      Therefore, when we include a rule in a style sheet, or modify an existing one, what happens is that all boxes marked with that selector will change their appearance according to the properties-values ​​that we have defined.

      On the contrary, if we want that an unmarked box to change its appearance with the CSS rules defined, we'll add the appropriate selector.

      Where to add the CSS style

      The style can be put in a CSS file. The file is created with all the rules, you get the address and then include the following line in the header of your template. For Blogger, you can add it between <head> and <b:skin><![CDATA[/*:

      <link href="syle.css" rel="stylesheet" type="text/css"/>

      Note: in blue is where the address of your CSS file should be added.

      You can also add the style directly mixed with HTML, inserted between the style tags:

      <style>
      .SelectorName {
      background-color: #EAEAEA;
      border: 1px solid #444444;
      width: 200px;
      font-size: 12px;
      }
      </style>

      It can be inserted into a particular box, as well. In this case, you do not need to add any selector to indicate where the CSS style is:

      <div style="background-color: #EAEAEA; border: 1px solid #444444; width: 200px; font-size: 12px;">Text here</div>

      In Blogger the rules are between the skin tags, which means they are between <b:skin><![CDATA[/* and ]]></b:skin>. If you edit the template, will find that there are many things in between. All this is CSS that marks the appearance of your blog.

      In case we want to see the effect after changing the value of some propriety, we can click on the Preview button. We can also remove anytime a declaration or add another to the desired selector.

      For those who don't want to touch the template, you can add the CSS directly by going to the Advanced section > Add CSS of your Template Designer.


      That's enough for today. The next tutorial will discuss in more detail about how to add rounded corners to our images using CSS.2013, By: Seo Master
      Powered by Blogger.