PNG Image not displaying

pocockn

I am currently using a bootstrap collapsed navigation for when my site is viewed on a mobile. I want to hide my logo from the top of the page and put it inline with my toggle button to save some screen space. When I try to place my image into the navbar it doesn't seem to display, all that displays is my ALT text. Here is the code i'm currently using.

 <div class="row">
        <div class="col-md-12">
            <nav  id="menu1"  class="navbar navbar-default" role="navigation">
                <div class="navbar-header">
                     <div id="logo" class="pull-left hidden-md hidden-lg">
                            <div class="img-responsive logo-small">
                                <img src="images/logo-xs.png" alt="small-logo"/>
                         </div>
                    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
                        <span class="sr-only">Toggle navigation</span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                    </button>
                </div>
                <?php wp_nav_menu( array( 'theme_location' => 'main-menu',
                                        'depth' => 2,
                                          'container_class' => 'collapse navbar-collapse',
                                         'menu_class' => 'nav nav-pills nav-justified',
                                        'walker' => new wp_bootstrap_navwalker() )); ?>

            </nav>
        </div>
Gustav

Try to find the network request for the image using Chrome Dev Tools for instance.

Chrome Dev Tools, network tab

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related