Home » » Merubah Heading Judul Posting Ke Tag h1 - h1 di Blog Post Title

Merubah Heading Judul Posting Ke Tag h1 - h1 di Blog Post Title

Merubah Heading Judul Posting Ke Tag h1 - h1 di Blog Post TitleMerubah Heading Judul Posting Ke Tag h1 - h1 di Blog Post Title











  • Login ke blogger.com > klik design > Edit HTML (centang Expand Widget Template)
  • Cari kode  berikut pada template Anda:
    <b:if cond='data:post.title'>
    <h3 class='post-title entry-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>
  • Kemudian ganti dengan kode berikut ini:
    <b:if cond='data:blog.pageType != &quot;item&quot;'>
    <b:if cond='data:post.title'>
    <h3 class='post-title entry-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>
    <b:else/>
    <h1 class='post-title entry-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>
  • Selanjutnya cari kode berikut ini:
    <h1 class='title' style='background: transparent; border-width: 0px'>
    <b:include name='title'/>
    </h1>

    Ganti dengan kode berikut:
    <b:if cond='data:blog.pageType != &quot;item&quot;'>
    <h1 class='title' style='background: transparent; border-width: 0px'>
    <b:include name='title'/>
    </h1>
    <b:else/>
    <p class='title' style='background: transparent; border-width: 0px'>
    <b:include name='title'/>
    </p>
    </b:if>
  • Cari lagi kode seperti ini:
    <h1 class='title'>
    <b:include name='title'/>
    </h1>

    Ganti dengan kode seperti ini:

    <b:if cond="data:blog.pageType != &quot;item&quot;">
    <h1 class="title">
    <b:include name="title">
    </b:include></h1>
    <b:else>
    <div class="title" style="font-size: 26px; font-weight: bold; letter-spacing: -1px; line-height: normal; margin: 5px 5px 0pt; padding: 15px 20px 3px 0pt;">
    <b:include name="title">
    </b:include></div>
    </b:else></b:if>
  • Kemudian cari  seperti kode berikut (Yabg terakhir ini boleh di ganti boleh tidak) :
    .post h3 {
    color:$titlecolor;
    font-size: 160%;
    font-weight: normal;
    line-height: 1.4em;
    margin: 0.25em 0 0;
    padding: 0 0 4px;
    }
    .post h3 a, .post h3 a:visited, .post h3 strong {
    color:$titlecolor;
    display: block;
    font-weight: bold;
    text-decoration: none;
    }
    .post h3 strong, .post h3 a:hover {
    color: #333333;
    }

    Ganti dengan kode berikut ini:
    .post h1, .post h3 {
    color:$titlecolor;
    font-size: 160%;
    font-weight: normal;
    line-height: 1.4em;
    margin: 0.25em 0 0;
    padding: 0 0 4px;
    }
    .post h1 a, .post h1 a:visited, .post h1 strong, .post h3 a, .post h3 a:visited, .post h3 strong {
    color:$titlecolor;
    display: block;
    font-weight: bold;
    text-decoration: none;
    }
    .post h1 strong, .post h1 a:hover,.post h3 strong, .post h3 a:hover {
    color: #333333;
    }
     
    .:Simpan Template:.
Share this article :

Post a Comment