Half underline css code for bloggers post-title
  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