Regardless of the template, everyone is going to want to change the default logo. The following simple tutorial will show you the general/universal way to change the site logo for most any JATC template.
1. Create your own custom logo. Name it and upload it to your templates/ja_template_name/images folder
2. Open your templates/ja_template_name/css/template.css folder and find the following lines:
(The following is used for example purposes only. The height/width will be different for each template)
/* Logo Image —*/
h1.logo { height: 91px; width: 200px; }
h1.logo a {
background: url(../images/logo.png) no-repeat left top;
display: block;
height: 91px;
width: 200px;
}
3. Replace “logo.png” with the name (and extension) of the custom logo you uploaded. (i.e. mynewlogo.jpg).
You may need to play around with the “width” and “height” parameters, depending on the dimensions of your custom logo.
– Save your changes in your server files
CLEAR CACHE – REFRESH PAGE
That’s it in a nutshell.