blogger post title customization


Half underline css code for bloggers post-title


copy  and paste the above code given in box just above the b:skin and after that search the post-title conditional tag and add <span> with closing tag </span> to add span element to work properly


101

h3.post-title span {

    position: relative;
    padding-bottom: 15px;

   
}


h3.post-title span::after {

    position: absolute; 
    left:0;
    bottom: 0; 
    width: 50%; 
    height: 5px; 
    border-bottom: 3px solid #dfbb8f; 
    content: ""    
 }
   
    @media screen and (max-width:768px){ 

h3.post-title span::after {  left:25%!important;  right:25%!important; }

}

102