By Adam on Tuesday, 19 January 2016
Posted in Wanderers
Replies 3
Likes 0
Views 1.6K
Votes 0
How can I add a logo to the top left of Wanderers (same position as Stack Ideas logo)?

Ideally it can be done in a way that does not get over-ridden by upgrades.
Hi Adam,

for logo in wanderers you can only change to text only at extensions-> wanderers-> advanced-> heading title.

and it does not overide by upgrade.

Hope this help.
·
Tuesday, 19 January 2016 16:31
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Jasni

I need to add a graphic logo.
·
Tuesday, 19 January 2016 17:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Adam,

Adding it is extremely simple and I assume you have basic html knowledge Edit the file /templates/wanderers/index.php and locate the codes below,


<div class="brands pull-left">
<?php if ($this->params->get('show_heading_title', true)) { ?>
<h1><?php echo JText::_($this->params->get('title', 'Wanderers'));?></h1>
<?php } ?>

<?php if ($this->params->get('show_heading_description', true)) { ?>
<small class="visible-lg">
<?php echo JText::_($this->params->get('description', 'Social template for Joomla'));?>
</small>
<?php } ?>
</div>


Then, change it to,


<div class="brands pull-left">
<img src="http://yoursite.com/images/logo.png" />
</div>
·
Tuesday, 19 January 2016 20:22
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post