I'm starting with some web design but I've encountered this problem that I've been trying to remove for a while. I would like to eliminate the space that is between the logo of the page and the start link:
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<ul class="nav navbar-header">
<a href="index.jsp"><img src="images/LOGO.png" width="15%"/></a>
</ul>
<ul class="nav navbar-nav">
<li class="col-xl-3"><a href="index.jsp">Inicio</a></li>
<li class="col-xl-3"><a href="login.jsp">Entrar</a></li>
</ul>
</div>
</nav>
</body>
I use the default definitions of bootstrap 3, I have not modified anything.
Help pls !!