My presentation for the MVP is outlined below:
.navbar {
flex-direction: row;
}
<!DOCTYPE html>
<html lang="en" dir="ltr>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="master.css">
</head>
<body>
<nav class="navbar navbar-light bg-light" id="bootstrap-overrides">
<div class="container">
<ul class="nav navbar-nav">
<li><a class="navbar-brand" href="#"></a>Patients Page</li>
<li><a class="navbar-brand" href="#">Admin</a></li>
<li><a class="navbar-brand" href="#">Register Patients</a></li>
</ul>
</div>
</nav>
</body>
</html>
The issue I am facing with the navbar
is that it does not align horizontally as intended by the CSS property flex-direction: row;
. Even after inspecting the element, the style attribute seems correct but the navigation bar continues to display vertically instead of horizontally.
Please note that I have already attempted using !important;
without any positive results.