BuddyBoss Home – Web Support Forums Themes Boss. theme Only one footer widget in like in the demo

Tagged: ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Question

    #51971
    @kimbo128

    Hello Buddyboss team,

    how can I reduce the 4 widgets in the footer area to only 1?

    Thanks a lot and best regards

    Answers

    #52104
    @vapvarun

    Hi @kimbo128, you can copy follow file from parent theme to child theme

    template-parts/footer-widgets.php

    and inside the child theme, you can modify it on the bais of your requirement

    
    <?php if ( is_active_sidebar( 'footer-1' ) || is_active_sidebar( 'footer-2' ) || is_active_sidebar( 'footer-3' ) || is_active_sidebar( 'footer-4' ) ) : ?>
    
    	<div class="footer-inner-top">
    		<div class="footer-inner widget-area">
    
    			<?php if ( is_active_sidebar( 'footer-1' ) ) : ?>
    				<div class="footer-widget">
    					<?php dynamic_sidebar( 'footer-1' ); ?>
    				</div><!-- .footer-widget -->
    			<?php endif; ?>
    
    		</div><!-- .footer-inner -->
    	</div><!-- .footer-inner-top -->
    
    <?php endif; ?>
    

    Regards
    Varun Dubey

    #55051
    @kimbo128

    Sorry, I can not reproduce it. Could you please explain in more detail? Thanks 🙂

    #55088
    @vapvarun

    Hi @kimbo128
    You can simply add following custom css

    
    .footer-widget {
        width: 100% !important;
    }
    

    It will make individual footer widget as full width you can use any of your footer widget sidebar area.
    Regards
    Varun Dubey

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘Only one footer widget in like in the demo’ is closed to new replies.