.navbar-brand > img
Created by: ncocacola
Hi,
It looks like .navbar-brand > img
has been changed to display: block
in the newer version (previously display: inline
).
This has the effect of forcing the img
onto the next line, which breaks the navbar.
Could this be fixed by changing it to display: inline-block
?
Thanks.