user2315717
user2315717

Reputation: 55

bootstrap not being responsive

i search it in the forum and i dont see nothing related for my trouble:

I have this website: http://www.vendopor.com/barc3lona/transportes.php

And yesterday, after no changes, no problems, my website start not being responsive.

I dont know what happen, i tried to remove all items on the web (to see what is not responsive) and website still not being responsive.

If anyone can help me would be much appreciated.

So much thanks to all, if u need the code or something, tell me.

Upvotes: 0

Views: 153

Answers (1)

ianaré
ianaré

Reputation: 3298

In the file "css/spacelab.css" there are absolute sizes, if I disable the loading of this CSS, the site becomes responsive.

If you want to change responsive element sizes from their defaults in the bootstrap-responsive CSS, you will need to set the various media queries:

@media (min-width: 1200px) {}
@media (min-width: 768px) and (max-width: 979px) {}

etc..

Media queries official documentation

Media queries how-to

Upvotes: 1

Related Questions