Title: Remove white spacing
Last modified: September 7, 2016

---

# Remove white spacing

 *  Resolved [meervdnick](https://wordpress.org/support/users/meervdnick/)
 * (@meervdnick)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/remove-white-spacing-2/)
 * Hello guys,
 * I just got help with removing the white space around my logo. Now I am curious
   how I can get decrease the space between the logo and the text underneath it 
   and decrease the space between the logo and the slider? My webiste is [http://www.fitt-squad.nl](http://www.fitt-squad.nl)
 * Thank you!

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

 *  [Vinod Dalvi](https://wordpress.org/support/users/vinod-dalvi/)
 * (@vinod-dalvi)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/remove-white-spacing-2/#post-8159693)
 * Hi [@meervdnick](https://wordpress.org/support/users/meervdnick/),
 * I hope you are well today and thank you for your question.
 * You can try achieving this by adding the following CSS code in the Custom CSS
   option of the latest version of Sparkling theme on the below path.
 * Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom
   CSS
 *     ```
       #page span.site-name a.navbar-brand {
           display: block;
       }
       span.site-name {
           display: block;
           width: 250px;
           margin: 0 auto;
           max-width: 100%;
       }
       .container.main-content-area {
           margin-top: 0;
       }
       header.entry-header.page-header {
           margin-top: 0;
       }
       ```
   
 * Best Regards,
    Vinod Dalvi
 *  Thread Starter [meervdnick](https://wordpress.org/support/users/meervdnick/)
 * (@meervdnick)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/remove-white-spacing-2/#post-8160246)
 * Thank you very much. I managed to decrease the space between the logo and the
   slider but it’s not gone. There are two lines underneath te logo. Is there any
   way to remove this so the slider is going up even more?
 * Thanks you!
 * Best regards,
 * Nick
 *  [Vinod Dalvi](https://wordpress.org/support/users/vinod-dalvi/)
 * (@vinod-dalvi)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/remove-white-spacing-2/#post-8164284)
 * > Thank you very much. I managed to decrease the space between the logo and the
   > slider but it’s not gone.
 * I visited your shared site and found you are using following custom CSS code 
   on your site that contains some extra braces which is wrong.
 *     ```
       .navbar-default .nav-search {
           display: none;
       }
       .navbar-default .navbar-collapse {
           float: none;
           margin: 0 auto;
           display: table !important;
       }
       #logo { padding: 0; }
       }
       #page span.site-name a.navbar-brand {
           display: block;
       }
       span.site-name {
           display: block;
           width: 250px;
           margin: 0 auto;
           max-width: 100%;
       }
       .container.main-content-area {
           margin-top: 0;
       }
       header.entry-header.page-header {
           margin-top: 0;
       }
       ```
   
 * The correct code is as following.
 *     ```
       .navbar-default .nav-search {
           display: none;
       }
       .navbar-default .navbar-collapse {
           float: none;
           margin: 0 auto;
           display: table !important;
       }
       #logo { padding: 0; }
       #page span.site-name a.navbar-brand {
           display: block;
       }
       span.site-name {
           display: block;
           width: 250px;
           margin: 0 auto;
           max-width: 100%;
       }
       .container.main-content-area {
           margin-top: 0;
       }
       header.entry-header.page-header {
           margin-top: 0;
       }
       ```
   
 * >  There are two lines underneath te logo. Is there any way to remove this so
   > the slider is going up even more?
 * Use the below custom CSS code to remove those lines.
 *     ```
       #masthead #line {
           display: none;
       }
       header.entry-header.page-header {
           border: 0;
       }
       ```
   
 *  Thread Starter [meervdnick](https://wordpress.org/support/users/meervdnick/)
 * (@meervdnick)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/remove-white-spacing-2/#post-8165195)
 * Thank you very much!
 *  [Vinod Dalvi](https://wordpress.org/support/users/vinod-dalvi/)
 * (@vinod-dalvi)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/remove-white-spacing-2/#post-8173312)
 * You are most welcome here 🙂

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

The topic ‘Remove white spacing’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/activello/1.4.9/screenshot.png)
 * Activello
 * [Support Threads](https://wordpress.org/support/theme/activello/)
 * [Active Topics](https://wordpress.org/support/theme/activello/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/activello/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/activello/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [Vinod Dalvi](https://wordpress.org/support/users/vinod-dalvi/)
 * Last activity: [9 years, 9 months ago](https://wordpress.org/support/topic/remove-white-spacing-2/#post-8173312)
 * Status: resolved