• Hello,
    I am working on building a site using the Go theme, and there is a good deal of white space between elements. Such as:
    Above the footer
    Above “About Us”
    Under the Header

    How do I reduce some of that white space? I am fairly new to WordPress – so not sure what to do.

    Thank you!

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey there,

    I can see some unnecessary space around the page elements.
    You can try to reduce it by tweaking the CSS of the page a bit.

    Here’s the code that worked for me:

    .wp-block-coblocks-hero
    {
       margin-bottom: 2% !important;
    }
    .wc-block-grid
    {
      margin-bottom: 0px !important;
    }
    #post-15 > div > div > p
    {
      margin-bottom: 3%;
    }
    

    You can enter the CSS code I provided in the Theme Customizer.
    Just log in to your WordPress Dashboard, find the Appearance->Customizer in the left sidebar. Once you enter it, you should see the Additional CSS section – http://prntscr.com/sqqyoh

    Let me know if this worked for you 🙂

    Best Regards,
    Pavle

    Thread Starter gmullins

    (@gmullins)

    Thanks! This worked for the space above the footer and a few of the blocks- but not changing the white space margin under the hero image and under an image block I have under the hero.

    Hey @gmullins,

    Thank you for getting back to me.

    You can try adding one more line of the CSS code that will remove the white space above and under the hero image.

    #post-15 > div > div > figure
    {
      margin: 0px auto;
    }

    Let me know if this worked for you. 🙂

    Best Regards,
    Pavle

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Access White Space’ is closed to new replies.