Line Break on Profile

Right now, all the information like username, email, etc is in single line. Is there any way to make it multiple line to make it clear and neater?

Comments

  • It is a standard list. Use CSS and make the display be a standard box.

  • Try adding this to the custom.css file

    dl.About dd, dl.About dd a {
    padding: 0 2px 0 0;
    color: #FFD700;
    font-size: 11px;
    font-weight: normal;
    }
    
    dl.About dd {
    position: relative;
    top: -15px;
    left: 100px;
    }
    
    dl.About dt, dl.About dd {
    padding: 0;
    margin: 0;
    float: none;
    font-size: 11px;
    line-height: 1.5;
    display: block;
    }
    
Sign In or Register to comment.