medator
Hi,
I always get the 'denied access' message when trying to updating files of template on your site via administrator panel.
You can open this header block file: /templates/ja_argo/tpls/blocks/header.php
At approx line 37, change this:
<small class="site-slogan"><?php echo $slogan ?></small>
to:
<?php if ($slogan) : ?>
<small class="site-slogan"><?php echo $slogan ?></small>
<?php endif; ?>
Then open the file: /templates/ja_argo/css/custom.css, add this css code:
@media (max-width: 480px) {
.logo-text > a {
font-size: 15px;
padding-left: 15px;
padding-right: 15px;
}
}