• nahlanee

    (@nahlanee)


    Hello,

    I made a child theme (local at the moment) of this theme and currently I have three issues:

    1. the class “active” for highlighting the current page isn’t working/doesn’t exist?!. Im not able to change the links color both in the parent theme and the child theme. a and a:hover work perfectly.
    2. I want the footer to be as wide as the content. when I change the width from 33,3 % to like 20% it looks different on every browser, obviously.
    3. Is there any possibility to add dynamic .nav-tabs/.nav-pills to a page? menu links and content in the backend (editable)??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Afterimage Designs

    (@afterimagedesigns)

    Hi nahlanee,

    Thank you for using WP Bootstrap Starter theme, Please see the instruction below to fix your problem.

    1. Can you add this css in your child theme, I will also include this in the theme and expect it in the new update

    #masthead .navbar-nav > li.current_page_item > a {
      color: #fff;
      font-weight: 600;
    }

    2. In the footer-widget.php file edit the code to this

    <?php
    
    if ( is_active_sidebar( 'footer-1' ) || is_active_sidebar( 'footer-2' ) || is_active_sidebar( 'footer-3' ) ) {?>
            <div id="footer-widget">
    			<div class="container">
    				<div class="row">
                        <?php if ( is_active_sidebar( 'footer-1' )) : ?>
                            <div class="col-12 col-md-4"><?php dynamic_sidebar( 'footer-1' ); ?></div>
                        <?php endif; ?>
                        <?php if ( is_active_sidebar( 'footer-2' )) : ?>
                            <div class="col-12 col-md-4"><?php dynamic_sidebar( 'footer-2' ); ?></div>
                        <?php endif; ?>
                        <?php if ( is_active_sidebar( 'footer-3' )) : ?>
                            <div class="col-12 col-md-4"><?php dynamic_sidebar( 'footer-3' ); ?></div>
                        <?php endif; ?>
    				</div>
    			</div>
            </div>
    
    <?php }

    3. I am not sure what you mean with this but, Yes the nav menu is editable just go to Dashboard -> Appearance -> Menus

    —-
    Hope this help you and please continue supporting this theme. Thank you ??

    Thread Starter nahlanee

    (@nahlanee)

    Hi,

    thanks a lot. But by the time you answered I already figured it all out somehow.

    As far as I can say, the default wordpress gallery doesn’t quite work in this theme. It always shows as one vertical centered column, despite what I do. So my workaround is to remove the theme support for gallery:

    remove_theme_support( 'html5', array(
    		
    		'gallery',
    		
    	) );
    Theme Author Afterimage Designs

    (@afterimagedesigns)

    Hi nahlanee,

    I am glad you found a fix on your problem. thank you for reporting that issue please expect this to be fix in the next update ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Customize theme’ is closed to new replies.