Home Forums Themes Support Claue REMOVE BLANK SPACE IN FOOTER AREA

Viewing 4 reply threads
  • Author
    Posts
    • #31553

      I’ve blocked all footer widgets from showing on mobile devices so that infinite scroll would work nicer.  but there’s  a black space still showing at the bottom on mobile devices.  i set this code

      .footer__top {
      padding-bottom: 3px;
      padding-top: 3px;
      }

      it works well to eliminate extra space on desktops where the widgets are still running, but not mobile. How can i eliminate black space on mobile?

    • #31554

      Hi,

      I see you hide all widgets in footer on mobile.

      Please add below code to remove space

      @media only screen and (max-width: 736px) {
      .footer__top {padding: 0;}
      .footer__top div[class*="jas-col"]:not(:last-child) {
      	margin-bottom: 0;
      }}

      Kind regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

    • #31555

      its still there.  did not work.

    • #31556

      wait it worked.  but there is now like a really thin black space now

    • #31561

      Please change code to

      @media only screen and (max-width: 736px) {
      .footer__top {padding: 0 !important;}
      .footer__top div[class*="jas-col"]:not(:last-child) {
      	margin-bottom: 0;
      }}

      Regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

Viewing 4 reply threads

You must be logged in to reply to this topic.