I am currently working on a practice website based off of the off-white website (https://www.off---white.com/en/US). A problem I am facing is when attempting to position the top tabs that being Shop, More, About, & Contact it moves the off-black™ text I have next to them. Is there anyway I can move the others to the right of the screen and leave the off-black™ on the left?
I have tried multiple things ranging from my own experimentation to reaching the 4th page of google.
My HTML
<div class="web-top">
<div id="web-top-title">
<p class="web-top-title-text">Off-Black™</p>
</div>
<div id="web-top-shop">
<p class="web-top-shop-text">Shop</p>
</div>
<div id="web-top-more">
<p class="web-top-more-text">More</p>
</div>
<div id="web-top-about">
<p class="web-top-about-text">About</p>
</div>
<div id="web-top-contact">
<p class="web-top-contact-text">Contact</p>
</div>
</div>
My CSS
/* Full Page Styling */
body {
padding:0px;
margin:0px;
}
/* Top Header Styling */
.web-top {
color:white;
background-color:blue;
width:100%;
height:22px;
display:block;
margin-top:0px;
}
#web-top-title, #web-top-shop, #web-top-more, #web-top-about, #web-top-contact {
margin-top:-14px;
float:left;
}
.web-top-title-text {
margin-left:10px;
}