Please modify file:
templates/gk_steakhouse/css/mobile.css
and change around line 199 from:
- Code: Select all
#gkMainbody table tbody,
#gkMainbody table thead,
#gkMainbody table tfoot {
width: 540px!important;
display: table;
}
to
- Code: Select all
#gkMainbody table tbody,
#gkMainbody table thead,
#gkMainbody table tfoot {
width: 100%!important;
display: table;
}
you might also want to change around line 212 from:
- Code: Select all
@media only screen and (max-width: 440px) {
#gkMainbody table {
width:260px!important;
}
}
to
- Code: Select all
@media only screen and (max-width: 440px) {
#gkMainbody table {
width: 100%!important;
}
}
Sadly it can be only done this way for the time being. You might also try to update the template to newest version where override.css is used a little bit differently and above changes might be used inside of it, but without an update I can't tell for sure (please make a backup before - sql and files)