How to display logo in center at boostrap for mobile device?

Bir

I am trying to develop a website using twitter bootstrap. I use a image as logo in navbar using this code

 <div class="navbar navbar-default navbar-static-top" role="navigation">

    <div class="navbar-header">

     <a class="navbar-brand" href="#"><img class="img-responsive" src="images/bradley.png" alt="" /></a>
    </div>

    <div>
       <ul class="nav navbar-nav">
          <li class="home current-page"><a href="index.html">Swap</a></li>
          <li class="episodes"><a href="tales.html">Tales</a></li>
             <li class="about"><a href="about.html">About</a></li>
            <li class="contact"><a href="contact.html">Contact</a></li>
       </ul>

    </div><!--/.nav-collapse -->

  </div>

It is ok for laptop. But for mobile device and tab i want that logo will be center. Please tell me How can i do that? This is my site https://dl.dropboxusercontent.com/u/168659703/project/index.html

apsuva
.navbar-header {
   margin: 0 auto;
   display: table;
   /* margin-right: 50px; */ remove this or add margin-right: auto !important;
}

http://jsfiddle.net/L64Pa/

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to create a semi-circle in center of a boostrap navbar for logo?

From Dev

Center logo on mobile in WordPress

From Dev

Center logo in Boostrap Wordpress menu on resizing

From Dev

How can I align my logo and menu icon on a mobile device

From Dev

image display on mobile will not center

From Dev

image display on mobile will not center

From Dev

Display a different logo on mobile and desktop?

From Dev

how to center logo on AppBarLayout

From Dev

How to Vertically center a Boostrap Column

From Dev

Forcing desktop display on a mobile device

From Dev

How to Center Logo in Responsive Header

From Dev

How to center the logo of my site?

From Dev

How to 'center' <div > for mobile

From Dev

How do I center the following navbar in Boostrap?

From Dev

jQuery display as its in mobile device in Magento

From Dev

how display logo on action bar

From Dev

How do I center the logo in ionic bar

From Dev

How to center an image .logo via css?

From Dev

How to align this logo center using bootstrap?

From Dev

How to place logo in center of a background image?

From Dev

How to put logo in center using css

From Dev

How to hide bootstrap slider and all image should be display vertically on mobile device?

From Dev

How do I make to fit my HTML element for all mobile device (display)?

From Dev

How to display bootstrap slider image full screen without stretching on mobile device using img tag?

From Dev

How can I make my nav bar display properly when being zoomed in mobile device?

From Dev

How to determine if the device is Mobile or Desktop?

From Dev

How to get device size (mobile)?

From Dev

How stylesheets for mobile device should be?

From Dev

Boostrap 3: How to give different images for (mobile/tablet) versions?

Related Related

  1. 1

    How to create a semi-circle in center of a boostrap navbar for logo?

  2. 2

    Center logo on mobile in WordPress

  3. 3

    Center logo in Boostrap Wordpress menu on resizing

  4. 4

    How can I align my logo and menu icon on a mobile device

  5. 5

    image display on mobile will not center

  6. 6

    image display on mobile will not center

  7. 7

    Display a different logo on mobile and desktop?

  8. 8

    how to center logo on AppBarLayout

  9. 9

    How to Vertically center a Boostrap Column

  10. 10

    Forcing desktop display on a mobile device

  11. 11

    How to Center Logo in Responsive Header

  12. 12

    How to center the logo of my site?

  13. 13

    How to 'center' <div > for mobile

  14. 14

    How do I center the following navbar in Boostrap?

  15. 15

    jQuery display as its in mobile device in Magento

  16. 16

    how display logo on action bar

  17. 17

    How do I center the logo in ionic bar

  18. 18

    How to center an image .logo via css?

  19. 19

    How to align this logo center using bootstrap?

  20. 20

    How to place logo in center of a background image?

  21. 21

    How to put logo in center using css

  22. 22

    How to hide bootstrap slider and all image should be display vertically on mobile device?

  23. 23

    How do I make to fit my HTML element for all mobile device (display)?

  24. 24

    How to display bootstrap slider image full screen without stretching on mobile device using img tag?

  25. 25

    How can I make my nav bar display properly when being zoomed in mobile device?

  26. 26

    How to determine if the device is Mobile or Desktop?

  27. 27

    How to get device size (mobile)?

  28. 28

    How stylesheets for mobile device should be?

  29. 29

    Boostrap 3: How to give different images for (mobile/tablet) versions?

HotTag

Archive