This tutorial will teach you how to add a logo to your ClientExec installation.
Please make a backup of the files referenced in this installation (index.phtml).
1. Navigate to YourInstallDirectory / templates / default.
2. Find and open this file: index.phtml
3. Navigate to line 81. You should see this line:
<h1 class="client-portal-name"><?php echo $this->user->lang("Client portal");?></span><!--<img class="public-logo" src="yourlogo"></img>--></h1>4. Remove this line:
<?php echo $this->user->lang("Client portal");?>5. Uncomment the logo code so that line 81 now looks like:
<h1 class="client-portal-name"><img class="public-logo" src="yourlogo"></img></h1>
6. In place of yourlogo, insert the image URL. Be sure to keep the quotes around yourlogo or this will not work. For example, a finished code should look like:
<h1 class="client-portal-name"><img class="public-logo" src="http://google.com/mylogo.jpg"></img></h1>