• good morning ,
    I have this problem with the oceanwp theme:

    When a user logs in, empty space is added after the footer.
    if the wordpress default theme is active, the empty space disappears.

    I saw that the problem is this line of css code,
    <div style="position: absolute; z-index: -10000; top: 0px; left: 0px; right: 0px; height: 1547px;"></div>

    how can I solve it?

    thank you
    Massimo

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter daitarn3

    (@daitarn3)

    if it can be useful I inserted this code to hide the admin bar from the users and the empty space is gone.

    // show admin bar only for admins
    if (!current_user_can('manage_options')) {
    	add_filter('show_admin_bar', '__return_false');
    }

    but there must be something in the code that is not good

    Hello,

    It could be a plugin conflict. Try to disable/enable plugins one by one to check for a solution.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘empty space after the footer’ is closed to new replies.