If you want to show (only) post title on your homepage blogger, lets follow our tutorial
Step 1: Login to Blogger
Step 1: Login to Blogger
Login to Blogger with your ID
Step 2: Edit
After you login, go to Design/Layout -> Edit HTML.
Make sure you check mark Expand Widgets
Step 3: Add code
Find this code:
]]></b:skin>
Then paste below code right after
]]></b:skin>
<!-- home layout -->
<style type='text/css'>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
.post-body, .post-footer, .jump-link, .post-timestamp, .post-author, .post-footer, .reaction-buttons, .post blockquote, .post-labels, .star-ratings, .post-backlinks, .post-icons, .date-header{display:none;}
</b:if>
</b:if>
</style>
<!--// home layout -->
<style type='text/css'>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
.post-body, .post-footer, .jump-link, .post-timestamp, .post-author, .post-footer, .reaction-buttons, .post blockquote, .post-labels, .star-ratings, .post-backlinks, .post-icons, .date-header{display:none;}
</b:if>
</b:if>
</style>
<!--// home layout -->
|