Customize Blog

Remove Post title in blogger?


Put in CSS [Go to Template, Customize, Advanced, Add CSS]:

.post-title.entry-title {
display: none;

**********************************************************************************************************************

How to Split the Blogger header into Two Columns?



step 1 : go to blogger dashboard

step 2   click on template

step 3 : click on edit HTML

step 4 : *Do customization as below*
* search below code*
<b:section class='header' id='header' maxwidgets='1' showaddelement='yes'>
<b:widget id='Header1' locked='false' title='your title name (Header)'
type='Header'>    
</b:section>

*add below code just after above code*

<b:section id='header-right' showaddelement='yes'/>
<div style='clear: both;'/>

Again search*]]></b:skin>  , *and add below code just above*  ]]></b:skin>*

#header, body#layout #header {width:45%;display
<javascript:void(0);>:inline-block;float:left;}
#header-right, body#layout #header-right {width:40%;display
<javascript:void(0);>:inline-block;float:right;padding:15px;}
#header-right .widget {margin:0;}

And again add below code just above  *]]>   </b:template-skin*>

#layout #header {width: 50%; float: left;}
#layout #header-right {width: 50%; float: right;}

step 5 : click on save template.

Now go to blogger and click on layout , now you can see two column
header section on your blogger layout.