• Resolved fulviods

    (@fulviods)


    Hi

    Thanks for your amazing plugin.
    I just have a problem… on mobile if you check the website you’ll see that we use monarch plugin (sharing plugin) who appear to the bottom of the page. In fact we can’t click on the accept button because it’s hidden by the monarch plugin bar

    I would like to make the banner goes up so we could see the button (just on mobile)
    I tried with CSS but it doesn’t work
    I also tried 1-2 code you gave for functions file in this forum…but nothing change….

    What is the solution? Thanks a lot for your time

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter fulviods

    (@fulviods)

    forget my message i succeeded with css sorry

    Plugin Author Moove Agency

    (@mooveagency)

    Hi @fulviods,

    Thanks for using our plugins.

    You can add the following code snippet to your functions.php to fix the conflict:

    add_action('moove_gdpr_inline_styles','gdpr_cookie_css_extension',10,3);
    function gdpr_cookie_css_extension( $styles, $primary, $secondary ) {
    	$styles .= '@media only screen and (max-width: 1024px){ body.gdpr-infobar-visible #moove_gdpr_cookie_info_bar { bottom: 40px } }';
    	return $styles;
    }

    I hope this helps.

    Thread Starter fulviods

    (@fulviods)

    thanks ! finally it worked simply with

    @media only screen and (max-width : 981px) {
    #moove_gdpr_cookie_info_bar {padding-bottom:30px !important;}
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘add bottom padding’ is closed to new replies.