Go to this File: /templates/ja_hawkstore/css/custom.css
Replace this code
@media screen and (max-width: 320px) {
.ja-tabswrap.default .ja-tabs-title-left ul.ja-tabs-title{
margin-top: 30px !important;
}
}
@media screen and (min-width:321px) and (max-width:768px) {
.ja-tabswrap.default .ja-tabs-title-left ul.ja-tabs-title{
margin-top: 30px !important;
}
}
with
@media screen and (max-width: 320px) {
.ja-tabswrap.default .ja-tabs-title-left ul.ja-tabs-title{
margin-top: 55px !important;
}
}
@media screen and (min-width:321px) and (max-width:768px) {
.ja-tabswrap.default .ja-tabs-title-left ul.ja-tabs-title{
margin-top: 55px !important;
}
}
Go to this File: /plugins/system/jatabs/jatabs/ja.tabs.css
Replace this code
.ja-tabswrap .container {
position: relative;
overflow: hidden;
height: 100%;
width: auto !important;
z-index: 9999;
}
With
.ja-tabswrap .container {
position: relative;
overflow: hidden;
height: 100%;
width: auto !important;
z-index: 9;
}