Here is how my current dropdown menu looks like: https://i.sstatic.net/evv1I.png
The "Home" option is not positioned correctly at the top left as I would prefer. How can I adjust this? Thank you for any assistance.
* {
margin: 0;
padding: 0;
}
nav {
width: 1600px;
}
ul {
list-style: none;
background-color: #333;
}
ul li {
width: 200px;
background: #333;
float: left;
height: 35px;
line-height: 35px;
text-align: center;
margin-right: 2px;
position: relative;
float: none;
display: inline-block;
}
ul li:hover {
background: #0e6ea8;
}
ul li a {
color: #fff;
text-decoration: none;
font-family: sans-serif;
display: block;
border: none;
}
ul li ul li {
border-top: 1px solid #fff;
}
ul li ul {
display: none;
}
ul li:hover ul {
display: block;
}
ul li ul .first {
position: absolute;
left: 201px;
top: 0;
display: none;
}
ul li ul :hover .first {
display: block;
}
ul li ul .second {
position: absolute;
left: 201px;
top: 0;
display: none;
}
ul li ul :hover .second {
display: block;
}
ul li ul li ul .seconda {
position: absolute;
left: 201px;
top: 0;
display: none;
}
ul li ul li ul:hover .seconda {
display: block;
}
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<nav>
<div class="nav navbar-fixed-top">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Options<span> ▾</span></a>
<ul>
<li><a href="#">Consumer
Management <span>▶</span></a>
<ul class="first">
<li><a href="#">www.e-homes.com.my</a></li>
</ul>
</li>
<li><a href="#">Project Admin
Tool <span>▶</span></a>
<ul class="second">
<li><a href="#">Download</a></li>
<ul class="seconda">
<li><a href="#">Download MR</a></li>
<li><a href="#">Download PO</a></li>
<li><a href="#">Download Invoice</a>
</li>
<li><a href="#">Download lalalala</a>
</li>
</ul>
</ul>
</li>
</ul>
</div>
</nav>
I overlooked a minor detail and the positioning of "Home" in my navigation bar is not quite right. Any advice on how to correct this issue would be greatly appreciated. Thank you once again for your help.