I'm editing a website and the bootstrap code is getting in my way. There is a line in the bootstrap css that says:
.navbar .container {
width: auto;
}
If I turn the width code off in my browsers Inspect Element, then the page looks as it should. How can I write this in my css file to override it? I need it to keep it's original settings, so I can't put 100% or a specific number in there. I've also tried inherited, initial and none suggestions.
I basically want it to disable the bootstrap css without having to remove it from the bootstrap code itself.