Bootstrap Compatible
This Web Design Software is based on latest Bootstrap Framework. So, all the themes designed using this website design software are by default bootstrap compatible and are fully responsive.
Responsive Web Design Support
Our Framework support Responsive Web Design, it means your templates or themes designed and will work on all portable devices including Iphone, Ipad, all android devices including smartphones and tablets, blackberry, Windows phone and so on.
The Framework use CSS3 media queries to implement the Responsive Web Design feature. It allow users to view the the final output of all the portable devises within it user interface.
Responsive design (desktop / tablet / mobile )
-
Responsive features
Stack elements instead of float wherever necessary
Resize headings and text to be more appropriate for devices
Use media queries responsibly and only as a start to your mobile audiences. For larger projects, do consider dedicated code bases and not layers of media queries.
Supported devices
Bootstrap supports a handful of media queries in a single file to help make your projects more appropriate on different devices and screen resolutions. Here's what's included:/* Large desktop */
- @media (min-width: 1200px) { ... }
- /* Portrait tablet to landscape and desktop */
- @media (min-width: 768px) and (max-width: 979px) { ... }
- /* Landscape phone to portrait tablet */
- @media (max-width: 767px) { ... }
- /* Landscape phones and down */
- @media (max-width: 480px) { ... }
min-width
and max-width
.