html5 - I just moved to bootstrap and its css is strict. how do I change nav hover to quit bouncing and resize my p element? -
i moved bootstrap make website responsive. during creating it, nav when hover on it bounces , makes header nav move instead of hovering , showing border-top effect. that, cannot figure out how resize header font-size ,
. site https://affattraction.com
you can see issues there. under showcase h1 there black text on left not resizing (
) issue.
also while hovering on nav links links bounce down bit , should stay still. indication of hover should green bar working perfectly.
any appreciated!
use class in nav tag , write css
html
<nav class="navbar navbar-default main-navbar"> </nav>
css
.main-navbar{ min-height: 55px !important; }
(i don't think need "!important" actuall. first of try without it. if not work. use it.)
Comments
Post a Comment