-2

I can't seem to center a navigation bar. Do you know how to center it? Not sure why it won't work. I've tried margin 0 auto; but it just line each link bar in equal distances across the site vertically.

.navigations {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}

.buttonNav {
  text-align: center;
  background-color: red;
}
<div class="navigations">

  <div class="buttonNav">
    <a href="index.html"><img class="home-button" src="images/home- 
          icon.png" alt="Home"></a>
  </div>

  <div class="buttonNav">
    <a href="about.html"><button class="siteButton" type="onclick" 
       name="button">About</button></a>
  </div>

  <div class="buttonNav">
    <a href="contact.html"> <button class="siteButton" type="onclick" name="button">Contact</button></a>
  </div>

  <div class="buttonNav">
    <a href="exhibition.html"><button class="siteButton" type="onclick" 
      name="button">Exhibition</button></a>
  </div>

  <div class="buttonNav">
    <a href="learn.html"><button class="siteButton" type="onclick" 
            name="button">Learn</button></a>
  </div>

  <div class="buttonNav">
    <a href="shop.html"><button class="siteButton" type="onclick" 
     name="button">Shop</button></a>
  </div>
</div>
Red Shark
  • 65
  • 1
  • 8

1 Answers1

1

do you want something like this ?
add justify-content:center; to .navigations

.navigations {
 display: flex;
 flex-direction: row;
 justify-content:center;
 
  }

.buttonNav {
text-align: center;
background-color: red;
}
<div class="navigations">

  <div class="buttonNav">
     <a href="index.html"><img class="home-button" src="images/home- 
      icon.png" alt="Home"></a>
  </div>

  <div class="buttonNav">
   <a href="about.html"><button class="siteButton" type="onclick" 
   name="button">About</button></a>
  </div>

  <div class="buttonNav">
    <a  href="contact.html"> <button class="siteButton" type="onclick" 
      name="button">Contact</button></a>
  </div>

  <div class="buttonNav">
    <a href="exhibition.html"><button class="siteButton" type="onclick" 
  name="button">Exhibition</button></a>
  </div>

  <div class="buttonNav">
     <a href="learn.html"><button class="siteButton" type="onclick" 
        name="button">Learn</button></a>
  </div>

  <div class="buttonNav">
     <a href="shop.html"><button class="siteButton" type="onclick" 
 name="button">Shop</button></a>
  </div>
</div>
Ado
  • 637
  • 1
  • 6
  • 17