Who says you cannot have a custom template in Blogger? See demo here. You can create your own custom pages for all pages in Blogger blog - starting with Homepage, single post page, Search and Label Page, archives, 404 page and static pages. You can add template of your choice right from your Dashboard-. Edit-> Termplate. For example: If you want a template for a specific page, do like this
<b:if cond='data:blog.url == "your-page-url"'>
<div class="container">
<div class="row'>
Add anything
</div>
</div>
</b:if>

Put the above code probably after your header to look better. If you want hide the recent posts and sidebar, do something like this:
<b:if cond='data:blog.url == "your-page-url"'>
<style type='text/css'>
#main-wrapper {display: none;}
#sidebar-wrapper { display: none; }
</style>
</b:if>

You can also edit and adjust with your CSS to let the sidebar or posts to appear else where. If you need further assistance on this , go to http://qnadev.blogspot.com and drop a question there. It is a question and answer forum build on blogger.

Post a Comment