• Resolved renatereitler

    (@renatereitler)


    In Firefox the form looks fine but in Chrome and Safari the fields are not formatted correctly. The entry fields are not aligned at the right but they are glued to the left titles.
    The entryfield for the message is totally messed up. The icons to format the text are weird signs which are listed above in a bulletlist and are nog recognizable. It seems multiple signs are overlapped.
    The entryfield itself is very small, also glued to the left and under the entry field are displayed all possible smiley’s.

    Also the previous entries are not formatted right, it’s juist a string of tekst with no formatting. You cannot see the difference between entry and moderator’s answer which should appear in a gray box.

    Unfortunately I cannot upload a screenshot here, but I hope you can see what I mean,
    kind regards,
    Renate

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Ouch ??

    I suppose if you disable WP Fastest Cache, it all works again?

    It seems the main CSS file is not loaded. It is only used on the guestbook page, and thus not included in the cache/minification, because that was generated on another page.

    What you can do is load the CSS and JavaScript on all pages with this PHP code:

    <?php
    function my_gwolle_gb_register() {
        wp_enqueue_script('gwolle_gb_frontend_js');
        wp_enqueue_style('gwolle_gb_frontend_css');
    }
    add_action('wp_enqueue_scripts', 'my_gwolle_gb_register', 20);
    ?>

    Then clear the cache/minification in WP Fastest Cache and see if it is any better.

Viewing 1 replies (of 1 total)
  • The topic ‘form appears weird, formatting buttons are not displayed correctly’ is closed to new replies.