Timofey Trofimov
Timofey Trofimov

Reputation: 1174

bootstrap: modals wtih different width

I have many modals. How can I set different (fixed) width to each one of them? If is there other way than just using LESS, let me know. Thanks.

Upvotes: 0

Views: 144

Answers (1)

robasta
robasta

Reputation: 4701

You can override the width inline like this:

<div class="modal fade" id="correctModal" style="width: 400px;">

Or add a style in the css like this:

<div class="modal fade" id="correctModal">

CSS

#correctModal{
width:400px;
}

Upvotes: 1

Related Questions