Forum Replies Created

Viewing 1 replies (of 1 total)
  • For Photopress::

    I added some code making it easy to change alignment for images.
    In the file upload.php, before the end of the upload form (round row 170 in my version) add this:
    ______________________________
    <br>
    Align image
     Left:<input type=”radio” checked=”true” name=”align” value=”alignleft” />
     Center:<input type=”radio” checked=”true” name=”align” value=”centered” />
     Right:<input type=”radio” checked=”true” name=”align” value=”alignright” />
    ______________________________
    And a bit futher down after case ‘upload’:, add
    ______________________________

    $pp_align = $_POST[‘align’];
    ______________________________
    It gives you a option to choose alignment when uploading the image file in photopress.

Viewing 1 replies (of 1 total)