• Hello,

    My site is https://www.wholehealth365.info

    My problem is that the right sidebar has dropped to the bottom of the page. I have tried multiple things including removing several plugins and widgets.

    I have read through several of the sidebar issues in the forum and can’t find anything that quite matches my problem, although perhaps its there somewhere. I have used the validator and that didn’t really help me. It could be a <div> problem somewhere.

    Below is the sidebar.php code which I altered slightly hoping to fix the problem: (hope I’m adding this correctly, possibly not)(Line 8: I moved </div> to the end of line 10) at the bottom of code I commented out one </div> appeared to be one to many, did’t do anything but put the pink font color back in the sidebar which had turned to gray when it dropped to bottom) (using the sparkling theme by colorlib)
    ______________________________________________________________________

    <?php
    /**
     * The Sidebar containing the main widget areas.
     *
     * @package sparkling
     */
    ?>
    	<div id="secondary" class="widget-area col-sm-12 col-md-4" role="complementary"></div>
    		<div class="well">
    			<?php do_action( 'before_sidebar' ); ?>
    			<?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
    
    				<aside id="search" class="widget widget_search">
    					<?php get_search_form(); ?>
    				</aside>
    
    				<aside id="archives" class="widget">
    					<h3 class="widget-title"><?php esc_html_e( 'Archives', 'sparkling' ); ?></h3>
    
    <ul>
    						<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
    					</ul>
    				</aside>
    
    				<aside id="meta" class="widget">
    					<h3 class="widget-title"><?php esc_html_e( 'Meta', 'sparkling' ); ?></h3>
    
    <ul>
    						<?php wp_register(); ?>
    
    <li><?php wp_loginout(); ?></li>
    						<?php wp_meta(); ?>
    					</ul>
    				</aside>
    
    			<?php endif; // end sidebar widget area ?>
    		<!-- </div> -->
    	</div><!-- #secondary -->

    ____________________________________________________________________

    Any help would be greatly appreciated! ?? Let me know if there is any other data I can provide you with to help with the issue

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Right sidebar had dropped to bottom of site on all pages’ is closed to new replies.