Support

Account

Home Forums General Issues Remove inline-style Reply To: Remove inline-style

  • I solved it myself with the following code:

    <?php
    $text = get_field('einleitungstext');
    $text = str_replace('<p style="text-align: justify;">', '<p>', $text);
    echo $text;
    ?>