How to change the template logo
To change the template logo you have to replace the current logo in the image folder found here:
"templates/coldstone/img/logo.jpg"
The size of the logo has a width of
270px and a height of
58px.
Your logo can have of course have a different size but it must be
smaller or the same size as the template logo. If you change the size from the logo you must update your css file.
The name of the css file is:
template.css. It is found here:
"templates/coldstone/css".
You can also go to the template manager in your Joomla backend. Choose your template and then you see a button in the top right called "css edit".
In the first lines you have the following code:
Code: |
h1#logo {
background:url(../img/logo.jpg) no-repeat;
width:270px;
height:58px;
text-indent:-999em;
font-size:0px;
overflow:hidden;
position:absolute;
margin:0;
padding:0;
}
|
Adjust the
width and
height with your logo dimensions.
What template positions are provided with the template?