I have a problem with extra space in my navigation bar. I will place the code down if you can help me with deleting extra space in my "col". I want to remove that extra space so they can be closer to each other. One of the problems is the last one "PURCHASE NOW" I have a big struggle with the "NOW" part because when I do something a little bigger it places it below.
There is a picture https://prnt.sc/w9e4w9
/* Navigation Bar */
.navigation{
background-color: white;
padding: 33px 0;
text-align: center;
font-family: 'Work Sans', sans-serif;
font-weight: 500;
}
.navigation .row > div > a{
text-decoration: none;
}
.navigation span:hover{
color: black;
}
.navigation .logo img{
position: relative;
}
.navigation span{
font-size: 14px;
color: grey;
}
.navigation .logo img{
width: 44px;
}
.navigation .nav-text{
padding: 10px 0;
}
.navigation .ceo-nav{
padding-left: 300px;
}
.navigation .purchase-now{
position: relative;
left: -50px;
}
<div class="navigation">
<div class="container-fluid ceo-nav">
<div class="row">
<div class="col-xl-1 logo">
<img src="img/logo.png" alt="Logo">
</div>
<div class="offset-xl-4 col-xl-1 nav-text">
<a href=""><span class="home">HOME</span></a>
</div>
<div class="col-xl-1 nav-text">
<a href=""><span class="work">WORK</span></a>
</div>
<div class="col-xl-1 nav-text">
<a href=""><span class="about">ABOUT</span></a>
</div>
<div class="col-xl-1 nav-text">
<a href=""><span class="blog">BLOG</span></a>
</div>
<div class="col-xl-1 nav-text">
<a href=""><span class="contact">CONTACT</span></a>
</div>
<div class="col-xl-2 nav-text">
<a href=""><span class="purchase-now">PURCHASE NOW</span></a>
</div>
</div>
</div>
</div>