
Originally Posted by
DivaVocals
Point 4 of the description gives me the impression that I can use this theme and still offer a different "experience" or "look/feel" for tablets and desktops with this contribution. Am I understanding this correctly?? I could modify the theme so that the tablet (particularly the larger tablets) will have a different layout than the smartphone?
You could add your own media queries in an css file or add a particular css file to load only for tablets. Use the code below for whenever you need elements to display on tablets.
PHP Code:
if ($detect->isTablet()) {
...
}

Originally Posted by
DivaVocals
Thanks. I'll work on that later...