Html 在响应情况下引导时,如何更改导航栏位置

Html 在响应情况下引导时,如何更改导航栏位置,html,twitter-bootstrap,twitter-bootstrap-3,Html,Twitter Bootstrap,Twitter Bootstrap 3,请im与引导v3新的,我喜欢改变导航栏的位置,当它去响应我想浮动到标题内的标志同一行的权利 发件人: 标志- 导航栏- 到 标志导航栏 Accueil fièrement plus de 1500网站! public/img/tollfree.png“alt=”“> 切换导航 谢谢将带有可见xs的徽标添加到导航栏标题 <a class="navbar-brand visible-xs" href="#"> <img alt="B

请im与引导v3新的,我喜欢改变导航栏的位置,当它去响应我想浮动到标题内的标志同一行的权利

发件人: 标志- 导航栏- 到


标志导航栏

Accueil fièrement plus de 1500网站!
public/img/tollfree.png“alt=”“> 切换导航

谢谢

将带有
可见xs的徽标添加到导航栏标题

 <a class="navbar-brand visible-xs" href="#">
      <img alt="Brand" src="img/logo.png">
 </a>
完整代码

<div class="container">
    <div id="content">
        <div class="row">
            <div id="header">
                <div id="logo" class="col-lg-4 col-sm-4 hidden-xs">
                    <a href="#"><img src="<?php echo base_url(); ?>public/img/logo.png" id="logo"></a>
                </div>
                <div id="client-num" class="col-lg-4 text-center">
                    <h1>Accueil fièrement plus de 1500 sites Web!</h1>
                </div>
                <div id="tollfree" class="col-lg-4 text-right">
                    <ul id="header-links" class="list-inline">
                        <li><a href="https://www.dothostia.com/client/cart.php?a=view" rel="nofollow">Panier</a></li>
                        <li><a href="#" rel="nofollow">Chat</a></li>
                        <li><a href="https://www.dothostia.com/client/clientarea.php" rel="nofollow">Espace Clients</a></li>
                        <li><a href="https://www.dothostia.com/client/pwreset.php" rel="nofollow">M.Perdu</a></li>
                        <li><a href="https://www.dothostia.com/client/register.php" rel="nofollow">Inscription</a></li>
                    </ul>
                    <img class="img-rounded" src="<?php echo base_url(); ?>public/img/tollfree.png" alt="">
                </div>
            </div>
        </div>
        <div class="clearfix"></div>
        <nav class="navbar navbar-default" id="navigation">
            <div class="container-fluid">
                <!-- Brand and toggle get grouped for better mobile display -->
                <div class="navbar-header">
                    <a class="navbar-brand visible-xs" href="#">
                        <img alt="Brand" src="<?php echo base_url(); ?>public/img/logo.png">
                    </a>
                    <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
                        <span class="sr-only">Toggle navigation</span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                    </button>
                </div>

                <!-- Collect the nav links, forms, and other content for toggling -->
                <div class="collapse text-center navbar-collapse" id="bs-example-navbar-collapse-1">
                    <ul class="nav navbar-nav pull-right" id="navbar">
                        <li><a href="#">Hébergement Mutualisé</a></li>
                        <li><a href="#">Hébergement Revendeur</a></li>
                        <li><a href="#">Nom de Domaine</a></li>
                        <li><a href="#">Certificats SSL</a></li>
                        <li><a href="#">Serveurs VPS</a></li>
                        <li><a href="#" class="noborder">Serveurs Dédiés</a></li>
                    </ul>
                </div><!-- /.navbar-collapse -->
            </div><!-- /.container-fluid -->
        </nav>
        <img alt="DotHotstia" class="img-responsive" src="https://www.dothostia.com/public/img/home21.jpg">
    </div>
</div>

Accueil fièrement plus de 1500网站!
public/img/tollfree.png“alt=”“> 切换导航

用当前代码编辑帖子。
<div id="logo" class="col-lg-4 col-sm-4 hidden-xs">
    <a href="#"><img src="img/logo.png" id="logo"></a>
</div>
<div class="container">
    <div id="content">
        <div class="row">
            <div id="header">
                <div id="logo" class="col-lg-4 col-sm-4 hidden-xs">
                    <a href="#"><img src="<?php echo base_url(); ?>public/img/logo.png" id="logo"></a>
                </div>
                <div id="client-num" class="col-lg-4 text-center">
                    <h1>Accueil fièrement plus de 1500 sites Web!</h1>
                </div>
                <div id="tollfree" class="col-lg-4 text-right">
                    <ul id="header-links" class="list-inline">
                        <li><a href="https://www.dothostia.com/client/cart.php?a=view" rel="nofollow">Panier</a></li>
                        <li><a href="#" rel="nofollow">Chat</a></li>
                        <li><a href="https://www.dothostia.com/client/clientarea.php" rel="nofollow">Espace Clients</a></li>
                        <li><a href="https://www.dothostia.com/client/pwreset.php" rel="nofollow">M.Perdu</a></li>
                        <li><a href="https://www.dothostia.com/client/register.php" rel="nofollow">Inscription</a></li>
                    </ul>
                    <img class="img-rounded" src="<?php echo base_url(); ?>public/img/tollfree.png" alt="">
                </div>
            </div>
        </div>
        <div class="clearfix"></div>
        <nav class="navbar navbar-default" id="navigation">
            <div class="container-fluid">
                <!-- Brand and toggle get grouped for better mobile display -->
                <div class="navbar-header">
                    <a class="navbar-brand visible-xs" href="#">
                        <img alt="Brand" src="<?php echo base_url(); ?>public/img/logo.png">
                    </a>
                    <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
                        <span class="sr-only">Toggle navigation</span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                    </button>
                </div>

                <!-- Collect the nav links, forms, and other content for toggling -->
                <div class="collapse text-center navbar-collapse" id="bs-example-navbar-collapse-1">
                    <ul class="nav navbar-nav pull-right" id="navbar">
                        <li><a href="#">Hébergement Mutualisé</a></li>
                        <li><a href="#">Hébergement Revendeur</a></li>
                        <li><a href="#">Nom de Domaine</a></li>
                        <li><a href="#">Certificats SSL</a></li>
                        <li><a href="#">Serveurs VPS</a></li>
                        <li><a href="#" class="noborder">Serveurs Dédiés</a></li>
                    </ul>
                </div><!-- /.navbar-collapse -->
            </div><!-- /.container-fluid -->
        </nav>
        <img alt="DotHotstia" class="img-responsive" src="https://www.dothostia.com/public/img/home21.jpg">
    </div>
</div>