Answers for "navbar collapse color"

1

How to change background color of a collapsed navbar to be different from when it's not collapsed?

@media only screen and (max-width : 768px) {
    .navbar-collapse {
    background: red;
  }
}
Posted by: Guest on October-16-2021
2

bootstrap navbar toggler icon color

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,102,203, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-toggler.navbar-toggler {
  border-color: rgb(255,102,203);
}
Posted by: Guest on August-07-2020

Code answers related to "navbar collapse color"

Code answers related to "Swift"

Browse Popular Code Answers by Language