10-07-2018, 11:05 AM
Hmm. We are working on making things more flexible in the next version, but I'm looking at a few things on your site...
You're not using the responsive classes. You have things like div class="aircrafts" and fullsize pictures being loaded. That's telling html to just put them out there exactly as you wrote them and intentionally telling them not to be responsive.
A video like this will show you how to use the grid.
https://www.youtube.com/watch?v=e5VQampkqdg
Basically you need to tell bootstrap "If this is a small device, make it take up 100% of the width, if it's a medium device, make it take 1/2 the width, and if it's XL, make it take 1/4. Stuff like that.
Also, your images are not setup to be responsive, so they're taking up the same amount of space, regardless of size. Here's a quick tutorial on that.
https://www.tutorialrepublic.com/twitter...images.php
Finally, if you ONLY want bootstrap, not some of the modifications that were in the original userspice, you can go into the admin dashboard and go to the css settings tab at the bottom and change that second css file from sb-admin to empty.css. That would be a last resort, but it's worth checking to see if that's giving you a conflict.
You're not using the responsive classes. You have things like div class="aircrafts" and fullsize pictures being loaded. That's telling html to just put them out there exactly as you wrote them and intentionally telling them not to be responsive.
A video like this will show you how to use the grid.
https://www.youtube.com/watch?v=e5VQampkqdg
Basically you need to tell bootstrap "If this is a small device, make it take up 100% of the width, if it's a medium device, make it take 1/2 the width, and if it's XL, make it take 1/4. Stuff like that.
Also, your images are not setup to be responsive, so they're taking up the same amount of space, regardless of size. Here's a quick tutorial on that.
https://www.tutorialrepublic.com/twitter...images.php
Finally, if you ONLY want bootstrap, not some of the modifications that were in the original userspice, you can go into the admin dashboard and go to the css settings tab at the bottom and change that second css file from sb-admin to empty.css. That would be a last resort, but it's worth checking to see if that's giving you a conflict.