Title: White Space/See More Button &#8211; Removal
Last modified: August 31, 2016

---

# White Space/See More Button – Removal

 *  [zrhusk9881](https://wordpress.org/support/users/zrhusk9881/)
 * (@zrhusk9881)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/white-spacesee-more-button-removal/)
 * Hello,
 * I am new to WordPress and have two very simple questions for more advanced WordPress
   users.
 * See my site at hnhventures.com to reference for help on my questions.
 * 1) On the home page, if you scroll down a little, there is a small white/gray
   line across the website. This wasn’t there before and I’m not sure what I clicked
   to make it appear there. Do you know how to remove this?
 * 2) On the home page, if your scroll to the very bottom, there is a small white/
   gray line just to the left of the calendar. Can this be removed?
 * 3) Also, the “See More” button on the home page, can this be removed?
 * Thanks for your time and for helping!
 * Sincerely,
    H&H Ventures

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

 *  [Sanjog](https://wordpress.org/support/users/sanjog/)
 * (@sanjog)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/white-spacesee-more-button-removal/#post-6955046)
 * Hi -@zrhusk9881
 * Its sorry to hear that you are having problem with the theme.
    But your problem
   can be solved. 1. For question no 1. That white area is for the widget. 2. To
   remove that area.Go to dashboard-> Appearance -> Customize -> Widgets -> Home
   Page Top Area.You need to remove widget if you have added any. 3. For question
   no.2 First you need to create child theme.For child theme [Click here](https://codex.wordpress.org/Child_Themes)
   4. Then in style.css file in child theme copy and paste the below code.
 *     ```
       article {
         margin-bottom: 40px;
         padding-bottom: 20px;
          }
       ```
   
 * 5. For question no.3 after creating child theme copy and paste header.php file
   from main theme’s folder to child’s theme folder.
    6. Now copy and paste only
   code written below:
 *     ```
       <?php
       /**
        * The Header for our theme.
        *
        * Displays all of the <head> section and everything up till <main>
        * and the left sidebar conditional
        *
        * @since 1.0.0
        */
       ?><!DOCTYPE html>
       <!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" <?php language_attributes(); ?>><![endif]-->
       <!--[if IE 7]><html class="no-js lt-ie9 lt-ie8" <?php language_attributes(); ?>><![endif]-->
       <!--[if IE 8]><html class="no-js lt-ie9" <?php language_attributes(); ?>><![endif]-->
       <!--[if gt IE 8]><!--><html class="no-js" <?php language_attributes(); ?>><!--<![endif]-->
       <head>
       	<meta charset="<?php bloginfo( 'charset' ); ?>">
       	<meta name="viewport" content="width=device-width">
       	<link rel="profile" href="http://gmpg.org/xfn/11">
       	<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
       	<!--[if IE]><script src="<?php echo BAVOTASAN_THEME_URL; ?>/library/js/html5.js"></script><![endif]-->
       	<?php wp_head(); ?>
       </head>
       <?php
       $bavotasan_theme_options = bavotasan_theme_options();
       $space_class = '';
       ?>
       <body <?php body_class(); ?>>
   
       	<div id="page">
   
       		<header id="header">
       			<nav id="site-navigation" class="navbar navbar-inverse navbar-fixed-top" role="navigation">
       				<h3 class="sr-only"><?php _e( 'Main menu', 'arcade' ); ?></h3>
       				<a class="sr-only" href="#primary" title="<?php esc_attr_e( 'Skip to content', 'arcade' ); ?>"><?php _e( 'Skip to content', 'arcade' ); ?></a>
   
       				<div class="navbar-header">
       					<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
       				        <span class="icon-bar"></span>
       				        <span class="icon-bar"></span>
       				        <span class="icon-bar"></span>
       				    </button>
       				</div>
   
       				<div class="collapse navbar-collapse">
       					<?php
       					$menu_class = ( is_rtl() ) ? ' navbar-right' : '';
       					wp_nav_menu( array( 'theme_location' => 'primary', 'container' => '', 'menu_class' => 'nav navbar-nav' . $menu_class, 'fallback_cb' => 'bavotasan_default_menu' ) );
       					?>
       				</div>
       			</nav><!-- #site-navigation -->
   
       			 <div class="title-card-wrapper">
                       <div class="title-card">
           				<div id="site-meta">
           					<h1 id="site-title">
           						<a href="<?php echo esc_url( home_url() ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
           					</h1>
   
           					<?php if ( $bavotasan_theme_options['header_icon'] ) { ?>
           					<i class="fa <?php echo $bavotasan_theme_options['header_icon']; ?>"></i>
           					<?php } else {
           						$space_class = ' class="margin-top"';
           					} ?>
   
           					<h2 id="site-description"<?php echo $space_class; ?>>
           						<?php bloginfo( 'description' ); ?>
           					</h2>
       						<?php
       						/**
       						 * You can overwrite the defeault 'See More' text by defining the 'BAVOTASAN_SEE_MORE'
       						 * constant in your child theme's function.php file.
       						 */
       						?>
   
           				</div>
   
           				<?php
           				// Header image section
           				bavotasan_header_images();
           				?>
       				</div>
       			</div>
   
       		</header>
   
       		<main>
       ```
   
 * 7.Report if any problem.
    Note: Please customize files of child theme, so your
   changes will not overwrite on theme update.
 * Thank You!!!
 *  [Metrocitygirl](https://wordpress.org/support/users/lchikamoto/)
 * (@lchikamoto)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/white-spacesee-more-button-removal/#post-6955300)
 * Question. Where am I supposed to copy and paste the new php code above? In the
   header.php file below the original code? Also maybe you know how to get rid of
   all the text as well rather than just the see more button.

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

The topic ‘White Space/See More Button – Removal’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/arcade-basic/1.1.1/screenshot.
   png)
 * Arcade Basic
 * [Support Threads](https://wordpress.org/support/theme/arcade-basic/)
 * [Active Topics](https://wordpress.org/support/theme/arcade-basic/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/arcade-basic/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/arcade-basic/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [Metrocitygirl](https://wordpress.org/support/users/lchikamoto/)
 * Last activity: [10 years, 3 months ago](https://wordpress.org/support/topic/white-spacesee-more-button-removal/#post-6955300)
 * Status: not resolved