Documentation

Features

This is a small tutorial on how to change the logo in the default template for 68 Classifieds v4.0.x

Text Tutorial

The first step is to open the file templates/default/layout.tpl in a text editor. After you have it open find the following code:

<div id="logo">
	{* This portion is the site title. The top left corner. *}
	<h1><a href="index.php" title="68 Classifieds">68 <span class="title">Classifieds</span></a></h1>
	<p>Welcome to our classifieds site.</p>
</div>

The actual logo in this template is text which allows you to change it easily. The logo is this section:

<h1><a href="index.php" title="68 Classifieds">68 <span class="title">Classifieds</span></a></h1>

The 68 is the first portion and classifieds is wrapped in a span tag and has a different font color. So if you wanted your site name to be “My Site” it would become:

<h1><a href="index.php">My <span class="title">Site</span></a></h1>

Video Tutorial


Have more questions? Visit our community forums.