blog template


   Site Map

Thursday, August 18, 2011

change h1 and h2 tricks collections themes

Share



jika anda menggunakan blog templates dari tricks collections themes adasusah bagi anda menukarkan <h1> dan <h2> tagnya kerana saya pun pening kepala dibuatnya.
Dibawah ini untuk memudahkan anda menukarkan <h1> dan <h2> tag sebagaimana disarankan oleh seo doctor adalah lebih baik anda mengikut langkah berikut untuk menukarkan tricks collections themes.
 Saya telah menggunakan untuk blog saya di http://prestosaladshooter.blogspot.com/

berikut adalah langkah-langkahnya
tukar <h1> dan <h2> dalam blogger templates

cari <div class='post'> dan tukarkan <h?> kepada <h1> code seperti html code dibawah

<b:includable id='post' var='post'>
  <div class='post'>
    <a expr:name='data:post.id'/>
    <b:if cond='data:post.title'>
      <h1>
     <b:if cond='data:post.link'>
       <a expr:href='data:post.link'><data:post.title/></a>
     <b:else/>
        <b:if cond='data:post.url'>
          <a expr:href='data:post.url'><data:post.title/></a>
        <b:else/>
          <data:post.title/>
        </b:if>
     </b:if>
      </h1>
    </b:if>


tukar <h2> kpd <h3>
Cari html code dbawah dan tukarkan tukar <h2> kpd <h3>
html code anda sepatutnya seperti dibawah

<b:widget id='HTML1' locked='false' title='Stat' type='HTML'>
<b:includable id='main'>
  <!-- only display title if it's non-empty -->
  <b:if cond='data:title != &quot;&quot;'>
    <h3 class='title'><data:title/></h3>
  </b:if>
  <div class='widget-content'>
    <data:content/>
  </div>

kemudian tukarkan <h3> kepada <h2> sepertimana html code dibawah

<div id='header-inner'>
      <div class='titlewrapper'>
        <h2 class='logo'>
          <b:include name='title'/>
        </h2>
      </div>

selamat mencuba

Labels: ,


   Site Map

Sunday, November 14, 2010

SEO <h1 and <h2 meta tag blogger templates

Share
h1 and h2 meta tag meta tag is the second most important option in the blogger templates optimise. Therefore, h1 and h2 meta tag should be in oprimise offline. So the question is?

What is h1 meta tag?
h1 is the title meta tag is the last post in your blog.
How do I change the meta tag h1?
This work is hard but do not worry as I will show you how to change your meta tags to h1 your blog more search engine friendly SEO.
So here I assume you already know how to see the HTML code for you to edit your blog.

steps to change the h1 meta tag to SEO with search engine
1 search
2 HTML code you will get is as below

<div class='post'>
<a expr:name='data:post.id'/>
<b:if cond='data:post.title'>
<h3 class='post-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>

3 Now change the h1 and h3 to your HTML code looks like below

<div class='post'>
<a expr:name='data:post.id'/>
<b:if cond='data:post.title'>
<h1 class='post-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h1>
</b:if>



4 Now h1 meta tag was seo "GOOD LUCK"

Labels: ,