Title: Remove Extra Space
Last modified: August 30, 2016

---

# Remove Extra Space

 *  Resolved [Pranidhi](https://wordpress.org/support/users/pranidhi/)
 * (@pranidhi)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/)
 * Hi,
 * I’m trying to remove excess space on my website:
 * [http://yogashalawest.com](http://yogashalawest.com)
 * As you can see, my home page is very simple and I don’t plan to put any images
   or widgets on the home page. Right now, there’s a lot of space between my menu
   and my footer. Is there a way to remove some of that space? I’m using Jetpack
   to add custom CSS.
 * I’ve removed the titles from all pages and posts but, because of that, there 
   is now a large space between the menu and the content. For example, [http://yogashalawest.com/ashtanga-yoga/](http://yogashalawest.com/ashtanga-yoga/)
 * Is there a way to remove some of that space so that the content starts closer
   to the menu?
 * Suggestions on what to add to Jetpack to achieve these two things would be very
   helpful.
 * Thank you!

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/remove-extra-space-1/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/remove-extra-space-1/page/2/?output_format=md)

 *  [BjScott](https://wordpress.org/support/users/bjscott/)
 * (@bjscott)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269291)
 * Hello!
 * Try putting this code into the Custom CSS area that Jetpack provides:
 *     ```
       #content {
         padding: 1em 0em;
          }
       #site-footer {
         padding: 0.25rem 0;
          }
       ```
   
 * let me know if that helps!
    Brenda
 *  Thread Starter [Pranidhi](https://wordpress.org/support/users/pranidhi/)
 * (@pranidhi)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269352)
 * It works well on most of my content pages, thank you! The only problem is that
   there is a grey border on the bottom of my home page and the contact page when
   the screen is maximized or in full screen mode, and also in mobile mode. I’m 
   guessing that’s because I have little to no content on those pages.
 * [http://yogashalawest.com](http://yogashalawest.com)
    [http://yogashalawest.com/contact/](http://yogashalawest.com/contact/)
 * Maybe the footer padding became too small? Let me know what you suggest. Thanks
   for your help!
 *  [BjScott](https://wordpress.org/support/users/bjscott/)
 * (@bjscott)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269412)
 * Hello!
 * I see what you mean. Try this in your Custom CSS…I think that will make the dark
   gray disappear!
 * `body {background-color: #F2DAC6; }`
 * Let me know if that works!
    Thanks, Brenda
 *  Thread Starter [Pranidhi](https://wordpress.org/support/users/pranidhi/)
 * (@pranidhi)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269415)
 * Hi Brenda,
 * That did make the bottom part match the background color of the rest of the website,
   but it still looked a bit strange because there was a line with some shadow separating
   the two sections. I took it out because I prefer the original look.
 * One last question since you’ve helped me so much already-
    What can I put in 
   my Jetpack Custom CSS to change the font of my post titles? I’d like them to 
   be sans serif and match my content. Take a look here: [http://yogashalawest.com/category/blog/](http://yogashalawest.com/category/blog/)
 * I tried the following but it didn’t work:
    .entry-title { font-family: Quicksand,
   Helvetica, Arial, sans-serif; font-style: normal; }
 * Thank you for all your help!
 *  [BjScott](https://wordpress.org/support/users/bjscott/)
 * (@bjscott)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269420)
 * Hello!
 * Try this :
 *     ```
       .entry-title a {
         font-family: "open sans",arial, "helvetica neue", helvetica, sans-serif;
         }
       ```
   
 *  Thread Starter [Pranidhi](https://wordpress.org/support/users/pranidhi/)
 * (@pranidhi)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269423)
 * When I pasted that into Jetpack and clicked ‘Save Stylesheet’, almost everything
   after font family disappears and this is the CSS that ends up being saved:
 * .entry-title a {
    color: #7f0022; font-family: " }
 * That has no effect on the post titles 🙁
 * [http://yogashalawest.com/category/blog/](http://yogashalawest.com/category/blog/)
 * Any other advice?
 * Thank you again for your continued help!
 *  [BjScott](https://wordpress.org/support/users/bjscott/)
 * (@bjscott)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269424)
 * That is awfully odd! Why would it now show the rest of the text?
 * Worth a shot to try:
 *     ```
       .entry-title a {
         font-family: "open sans",arial, "helvetica neue", helvetica, sans-serif
         !important;}
       ```
   
 *  Thread Starter [Pranidhi](https://wordpress.org/support/users/pranidhi/)
 * (@pranidhi)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269425)
 * Same thing! After I click ‘Save Stylesheet’, I’m left with:
 * .entry-title a {
    font-family: " }
 * Not sure what’s going on.
 *  [BjScott](https://wordpress.org/support/users/bjscott/)
 * (@bjscott)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269430)
 * I’ve not used JetPack…so not sure. So wierd!
 * That is the default font for the rest of the site, so Id hoped it would just 
   apply to the .site-title a by doing this.
 * Ahh…one last thing..I see I didnt capitalize the font family names….here is exactly
   how they are listed for the rest of the site. LAST SHOT! 🙂
 * `.entry-title a {font-family: "Open Sans",Arial,"Helvetica Neue",Helvetica,sans-
   serif;}`
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269440)
 * You should not copy & paste the CSS from your notification e-mails. The e-mails
   will convert the special characters into escape codes. For example, your email
   client is converting double quote marks (“) into **&quot;**. That won’t work.
   Instead, copy & paste the code directly from the posts above, not from your e-
   mail message.
 *  Thread Starter [Pranidhi](https://wordpress.org/support/users/pranidhi/)
 * (@pranidhi)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269442)
 * That worked! Thank you BjScott and Crouching Bruin! I was mistakenly copy/pasting
   from my email instead of directly from the forum.
 *  Thread Starter [Pranidhi](https://wordpress.org/support/users/pranidhi/)
 * (@pranidhi)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269455)
 * Hi guys,
 * Sorry to bother you again! I thought I had resolved this issue but when I maximize
   my window on a desktop, I’m still getting a grey border underneath the footer
   on my home page and contact page:
 * [http://yogashalawest.com](http://yogashalawest.com)
    [http://yogashalawest.com/contact/](http://yogashalawest.com/contact/)
 * When I put in the following CSS that BJ suggested-
 * body {background-color: #F2DAC6; }
 * – the bottom wrapper is the same color as the background of the site, but there’s
   a line that separates the wrapper from the main site. The line comes underneath
   the footer that has my physical address and email address.
 * I think this is only happening on the home page and contact page because I have
   very little content on those pages.
 * Any ideas? This is one of the last details I’m trying to resolve before finalizing
   the site.
 * Thanks!
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269462)
 *     ```
       #page {box-shadow: none;}
       ```
   
 *  Thread Starter [Pranidhi](https://wordpress.org/support/users/pranidhi/)
 * (@pranidhi)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269465)
 * Put that into Jetpack but the problem still remains when window is maximized.
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/#post-6269466)
 * You need to add the background color rule for the body element that BJ suggested
   as well.

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/remove-extra-space-1/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/remove-extra-space-1/page/2/?output_format=md)

The topic ‘Remove Extra Space’ is closed to new replies.

## Tags

 * [pure and simple](https://wordpress.org/support/topic-tag/pure-and-simple/)
 * [remove space](https://wordpress.org/support/topic-tag/remove-space/)

 * 16 replies
 * 3 participants
 * Last reply from: [Pranidhi](https://wordpress.org/support/users/pranidhi/)
 * Last activity: [10 years, 10 months ago](https://wordpress.org/support/topic/remove-extra-space-1/page/2/#post-6269468)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
