Hello Gavickpro.
I've been using this theme and am very happy with it, however the PNG logo looks pixelated on some devices and would like to use an SVG logo to resolve this.
Please help me to do this?
Thanks in advance.
My site: http://m1gp.us
<?php if ($this->API->get('logo_type', 'image')!=='none'): ?>
<?php if($this->API->get('logo_type', 'image') == 'css') : ?>
<a href="<?php echo JURI::root(); ?>" id="gkLogo" class="cssLogo"><?php echo $this->API->get('logo_text', ''); ?></a>
<?php elseif($this->API->get('logo_type', 'image')=='text') : ?>
<a href="<?php echo JURI::root(); ?>" id="gkLogo" class="text">
<span><?php echo $this->API->get('logo_text', ''); ?></span>
<small class="gkLogoSlogan"><?php echo $this->API->get('logo_slogan', ''); ?></small>
</a>
<?php elseif($this->API->get('logo_type', 'image')=='image') : ?>
<a href="<?php echo JURI::root(); ?>" id="gkLogo">
<img src="<?php echo $logo_image; ?>" alt="<?php echo $this->API->getPageName(); ?>" />
</a>
<?php endif; ?>
<?php endif; ?>
<a href="<?php echo JURI::root(); ?>" id="gkLogo">
<img src="PATCH_TO_YOUR_SVG_LOGO" alt="<?php echo $this->API->getPageName(); ?>" />
</a>