Supported devices
This template supports a handful of media queries in a single file to help make your projects more appropriate on different devices and screen resolutions. You can find all the code in "css/media-queries.css"
Here's what's included by default :
Label | Layout width | Characteristics |
---|---|---|
Default | 1080px and up | Standard display. |
Small screen | 980px and above | Slideshow above the content - Logo centered |
Portrait tablets | 768px and above | Left and Right module positions inline |
Phones and little tablets | 767px and below | User modules inline |
You can change easily these settings in Template manager (section "Responsive").
/* Portrait tablet to landscape and desktop */
@media(min-width:768px)and(max-width:979px){...}
/* Phone and little tablet */
@media(max-width:767px){...}
Responsive utility classes
For faster mobile-friendly development, use these utility classes for showing and hiding content by device. Below is a table of the available classes and their effect on a given media query layout (labeled by device).
Class | Phones 767px and below | Tablets 979px to 768px | Desktops Default |
---|---|---|---|
visible-phone |
Visible | Hidden | Hidden |
visible-tablet |
Hidden | Visible | Hidden |
visible-desktop |
Hidden | Hidden | Visible |
hidden-phone |
Hidden | Visible | Visible |
hidden-tablet |
Visible | Hidden | Visible |
hidden-desktop |
Visible | Visible | Hidden |
When to use
Use for each Joomla module and avoid creating entirely different versions of the same site. Instead, use them to complement each device's presentation.
How to use
You must add the class in Module class suffix of your module.
Responsive utilities test case
Resize your browser or load on different devices to test the above classes.
Visible on...
Green checkmarks indicate that class is visible in your current viewport.
- Phone✔ Phone
- Tablet✔ Tablet
- Desktop✔ Desktop
Hidden on...
Here, green checkmarks indicate that class is hidden in your current viewport.