I'm relatively new to bootstrap and doing my best to get up to speed. I understand that rather than edit that 6700 line bootstrap.css file, it makes more sense to create your own css file of changes and put that under the main bootstrap.css file, overriding what was in the main one.
However, I have an issue with media queries. For example, I want the menu to collapse at a larger resolution than what is specified in bootstrap.css, which includes something like this:
@media (min-width: 767px) {
[ lots of things to collapse the menu ]
}
So in my changes css file, I copied the same code, but changed the min-width to 992px. The problem is that this doesn't cancel out the directives made in the bootstrap.css file. It just does them again at a different resolution.
The only thing I can think of to resolve this is to copy that code from the original file, leave the min-width resolution at 767, and then for each instruction through the entire block of code, determine what the default property should be and set it back to that. This would be a ton of work, and could be very prone to mistakes.
My only solution was to edit the main bootstrap.css file and comment out that code. I didn't like editing it, but I don't see any other way around this. IS there another way? I'm not looking for help specifically on collapsing the menu. I'm more looking for css concept help.