http://www.scriptureceramics.co.za/
Hi, I have 2 questions.
1. How do I hide a module in mobile and tablet view but NOT from desktop view?
2. My logo is NOT responsive, can it be and how do I do it?
Running the Joomla 3 template.
Thanks
<link rel="stylesheet" href="http://www.scriptureceramics.co.za/templates/gk_storebox/css/small.desktop.css" media="(max-width: 1100px)" />
<link rel="stylesheet" href="http://www.scriptureceramics.co.za/templates/gk_storebox/css/tablet.css" media="(max-width: 1030px)" />
<link rel="stylesheet" href="http://www.scriptureceramics.co.za/templates/gk_storebox/css/small.tablet.css" media="(max-width: 820px)" />
<link rel="stylesheet" href="http://www.scriptureceramics.co.za/templates/gk_storebox/css/mobile.css" media="(max-width: 580px)" />
@media (max-width: 8100px) {
#gkLogo.cssLogo {
background: transparent url('../images/logo-small-desktop.png') no-repeat 0 0;
height: 60px;
width: 408px;
}
}
@media (max-width: 1030px) {
#gkLogo.cssLogo {
background: transparent url('../images/logo-tablet.png') no-repeat 0 0;
height: 60px;
width: 408px;
}
}
@media (max-width: 820px) {
#gkLogo.cssLogo {
background: transparent url('../images/logo-small-tablet.png') no-repeat 0 0;
height: 60px;
width: 408px;
}
}
@media (max-width: 580px) {
#gkLogo.cssLogo {
background: transparent url('../images/logo-mobile.png') no-repeat 0 0;
height: 60px;
width: 408px;
}
}