Bonjour,
j’ai tout tourné dans tous les sens pendant un temps interminable mais je ne trouve pas la solution.
ma barre de nav bouge à gauche ou à droite d’environ 1% selon la page, malgré le fait qu’elle soit en position fixed
Le HTML est pourtant simple
<div id="nav">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="photos.html">PHOTOS</a></li>
<li><a href="videos.html">VIDEOS</a></li>
<li><a target="_blank" href="https://www.tumblr.com/drvonklafout">ACTU</a></li>
<li><a href="contact/formpage.html" target="_blank">CONTACT</a></li>
</ul>
</div>
tout comme les CSS
#nav
{
left: 50%;
top: 20px;
transform: translateX(-50%);
position: fixed;
z-index: 9999;
width: 100%;
}
#nav li a
{
margin-top: 0px;
color: #FFFFFF;
padding-left: 5px;
font-size: 18px;
line-height: 25px;
border-left: 1px solid #b7b7b7;
font-family: 'Chunkfive', sans-serif;
text-decoration: none;
}
#nav li a:hover
{
color: #FFFFFF;
}
#nav ul
{
list-style: none;
text-align: center;
padding-top: 10px;
margin-top: 0px;
}
#nav li
{
display: inline;
margin-left: auto;
margin-right: auto;
}
#nav li:not(:last-child)
{
margin-right: 5px;
}
body
{
background-color: #484D62;
font-size:1em;
line-height: 1.6;
color : white;
font-family: "lato-light", 'ralewayextraligh', sans-serif;
font-weight: lighter;
}
Par avance merci
+0
-0