0👍
✅
I finally fixed this with the following css at the template level:
.navbar-default .navbar-collapse {
border-style: hidden !important;
It’s more of a patch, but it did the trick.
1👍
Just add margin-top: -1px
to navbar-static-top
like this:
.navbar-static-top {
margin-bottom: 0px !important;
margin-top: -1px;
background-color: #11C356;
border-color: #11C356;
/* border-style: solid; */
font-family: 'Source Sans Pro', sans-serif;
font-weight: 200;
font-size: 1.2em;
}
- Django display list items based on URL
- Receiving a NoReverseMatch error while trying to add the username to the url after login
- ElasticSearch – bulk indexing for a completion suggester in python
0👍
Try this
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 20px;
/* border: 1px solid transparent; */ or border:none;
}
.navbar-static-top {
margin-bottom: 0px !important;
background-color: #11C356;
/* border-color: #11C356; */
font-family: 'Source Sans Pro', sans-serif;
font-weight: 200;
font-size: 1.2em;
}
- Django datetimefield and postgres
- Django makemigrations import error
- Remapping traffic from one port to another using ATS
Source:stackexchange.com