I wanted my heading should be in the center of the navbar. I have tried some code but that is not working.
.navbar img {
float: left;
width: 80px;
height: 80px;
position: relative;
top: -12px;
}
.navbar h1 {
top: 18px;
font-size: 30px;
color: brown;
text-align: center;
}
.navbar {
min-height: 80px;
}
<nav class="navbar navbar-default header">
<div class="container-fluid">
<div class="navbar-header">
<h1>My heading</h1>
</div>
</div>
</nav>
I have referred this link also: How to center align text in navigation bar of website in CSS?
There they have mentioned it should be in text-align: center
. But I have included already my script. Any input, please?