From time to time, there are instances where a template is downloaded and – for one reason or another – when the template is installed, it includes a “J1.5 Also Available” or “J1.7 Also Available” tab along the left edge of the screen … similar to the tabs on our template demo versions.
If this should occur with a template you have downloaded and installed, here is the fix:
Open the following file (within the following path) –> plugins/system/jat3/base-themes/default/css/switchj17.css
(if you are using a J1.7 template, the path would be –> plugins/system/jat3/base-themes/default/css/switchj15.css )
Within the “switch17.css” or “switch15.css” file, look for something similar to the following:
<blockquote>
#ja-switch {
height: auto;
left: 0;
position: fixed;
top: 50%;
width: auto !important;
z-index: 99999;
margin-top: -137px;
}
</blockquote>
and change it to . . .
<blockquote>#ja-switch {
display: none;
height: auto;
left: 0;
position: fixed;
top: 50%;
width: auto !important;
z-index: 99999;
margin-top: -137px;
}
</blockquote>
The “key” is the “display: none”
😎