Reputation: 15
i can't find a way to slightly increase the width of the bootstrap cover template. Increasing the size in the css to @media doesn't change anything.
I guess it's very simple, but I can't figure out how to do it. Sorry for the incompetence!
Upvotes: -1
Views: 51
Reputation: 19521
In this template https://getbootstrap.com/docs/4.0/examples/cover/, In cover.css file you shall find the limiting factor of the container width to be this CSS rule: (I got this from inspecting the DOM in Dev Tools).
.cover-container {
max-width: 42em;
}
So change that to a bigger max-width
Upvotes: 1