In my design, I want to change my link and hover color in a specific part. I try my best but I can\'t do that. I am new in bootstrap. How can I change it for Bootstr
You can override the bootstrap classes by adding a custom css file like mystyle.css and place it just after bootstrap in the head section:
and inside mystyle.css:
.navbar-light .navbar-nav .nav-link { color: whitesmoke; } .navbar-light .navbar-nav .nav-link:hover { color: whitesmoke; }