Forum Replies Created

Viewing 1 replies (of 1 total)
  • I used to have this problem and have a solution for this. Open your stylesheet.css then add this code in, image alignment should work fine!

    img.centered {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    img.alignright {
        padding: 4px;
        margin: 0 0 2px 7px;
        display: inline;
    }
    
    img.alignleft {
        padding: 4px;
        margin: 0 7px 2px 0;
        display: inline;
    }
    
    .alignright {
        float: right;
    }
    
    .alignleft {
        float: left;
    }
Viewing 1 replies (of 1 total)