After spending an hour trying to troubleshoot and searching for solutions, I am turning here for help.
I am attempting to insert a Bootstrap Nav-Bar into a Div. I successfully centered the Nav-Bar, but now my Div is taller than the content inside it. This issue only arises when the Nav-Bar is centered. If I let it float left, the extra space below the Nav-Bar disappears.
I believe the problem lies within this block of code:
ul{
display: inline-block;
}
This is what I currently have implemented.
The menu is centered but there is too much space below it
This is what I am aiming for, perfectly centered:
No extra space below but still centered
Any assistance would be greatly appreciated :)