Deborah
Deborah

Reputation: 15

Problem with resizing the simple bootstrap cover template

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

Answers (1)

IT goldman
IT goldman

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

Related Questions