xXx BR3W3R xXx
|
How to center LogoFind: | Code: | <tr>
<td><a href="{U_INDEX}">{SITE_LOGO_IMG}</a></td>
<td width="100%" align="center"><h1>{SITENAME}</h1><span class="gen">{SITE_DESCRIPTION}</span></td>
</tr> |
Replace With: | Code: | <tr>
<td width="100%" align="center"><a href="{U_INDEX}">{SITE_LOGO_IMG}</a></td>
</tr> |
Hope it helps. Found it on another forum and decided to post it here.
|
xXx BR3W3R xXx
|
Admin mabe you could modify if it so that you can still see the Site name and description under it.
|
admin (no pm's please)
|
As has been said many times on this subject, the method varies according to the template and so no one set on instructions is appropriate, and if you actually learn a little html then you will be able to see how to do these things in your own template.
|
xXx BR3W3R xXx
|
Ok i might do a little expermitting with it till i come up with something. If you want to see that is does work i can show you.
|
xXx BR3W3R xXx
|
OK i got the site name and description now how can center it under the logo.
|
Nick(NR)
|
You are completely missing what should be done on this and you've posted everything you needed:
| Code: | <tr>
<td><a href="{U_INDEX}">{SITE_LOGO_IMG}</a></td>
<td width="100%" align="center"><h1>{SITENAME}</h1><span class="gen">{SITE_DESCRIPTION}</span></td>
</tr> |
and you want to center the logo, all you need to do is look at the td tags to see, you've got align="center" on the second td tag and not the first so add it prior to the linked image.
|
|
|