Hi
Only responsive styles are loaded after override.css
- Code: Select all
<link media="(max-width: 1200px)" href="http://digital-control.com/gavick/templates/gk_storebox/css/small.desktop.css" rel="stylesheet">
<link media="(max-width: 1030px)" href="http://digital-control.com/gavick/templates/gk_storebox/css/tablet.css" rel="stylesheet">
<link media="(max-width: 820px)" href="http://digital-control.com/gavick/templates/gk_storebox/css/small.tablet.css" rel="stylesheet">
<link media="(max-width: 580px)" href="http://digital-control.com/gavick/templates/gk_storebox/css/mobile.css" rel="stylesheet">
and couple of "in code" styles from modules.
Table cannot be turn responsive. That's a really old technology
I think all You can do is to reduce paddings in <th> and <td> to make it smaller and hopefully fit to mobile than.
Just put this to mobile.css:
- Code: Select all
th, td {
padding: 0;
}