- Login to your to your Blogger account.
- Go to Dashboard > Design > Edit HTML.
- Back up your template.
- Tick the Expand Widget Templates checkbox on top right of the HTML window.
- In the code window, look for this line:
<b:includedata='post'name='post'/> - Now replace that line with the code below (just copy & paste):
01<!--Label and archive page title only hack-->02<b:ifcond='data:blog.searchLabel'>03<h3class='title-only'><aexpr:href='data:post.url'><data:post.title/></a></h3>04<b:else/>05<b:ifcond='data:blog.pageType == "archive"'>06<h3class='title-only'><aexpr:href='data:post.url'><data:post.title/></a></h3>07<b:else/>08<b:includedata='post'name='post'/>09</b:if>10</b:if>11<!--ns-services.blogspot.com--> - Click Save Template.
- To change the look of the titles, you have two options:
- Use inline styling by inserting
styleattribute after<h3in lines 3 and 6, like in this example :1<h3style="margin-bottom: 15px;"class='title-only'><aexpr:href='data:post.url'><data:post.title/></a></h3> - Add a separate element definition in CSS, like this:
1.title-only {2/* add styling codes here here */3}And place the it before]]></b:skin>line in your HTML.
- Use inline styling by inserting
- Finish and enjoy!

