I have PSD file that width is 1400px. I want create that website by BootStrap 3. But Bootstap default width is 1170px. How can I make my 1400px website by BootStrap. Thanks in advance.
Add a breakpoint for devices with width > 1430px (1400px + 2*15px padding) :
Bootstrap 3:
@media (min-width: 1430px) {
.container {
width: 1400px;
}
}
Bootstrap 4:
@media (min-width: 1430px) {
.container {
max-width: 1400px;
}
}
Customize your Bootstrap assets, changing these variables :
@screen-lg: 1400px@container-large-desktop: ((1370px + @grid-gutter-width))And download it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With