Symon
|
Index button Too LargeOn some templates when you add your own logo the index button gets blown up to a huge size.
1. Goto admin panel -- 3 styles -- edit template-- using the top drop box find the template you wish to edit -- now agian look in top drop box and fin ----overall_header.tpl
Now look for a block of code that looks something like this,
| Code: | <td width="100%"><table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><a href="{U_INDEX}"><img src="templates/myfs_testhtml1/images/arcade84.jpg" width="205" height="130" border="0" alt="" /></a></td>
<td><a href="{U_INDEX}"><img src="templates/myfs_testhtml1/images/{LANG}top_bar_index.gif" width="205" height="26" border="0" alt="{L_INDEX}" title="{L_INDEX}" /></a></td>
<td><a href="{U_FAQ}"><img src="templates/myfs_testhtml1/images/{LANG}top_bar_faq.gif" width="80" height="26" border="0" alt="{L_FAQ}" title="{L_FAQ}" /></a></td>
<td><a href="{U_MEMBERLIST}"><img src="templates/myfs_testhtml1/images/{LANG}top_bar_memberlist.gif" width="80" height="26" border="0" alt="{L_MEMBERLIST}" title="{L_MEMBERLIST}" /></a></td> |
The bit you need to change is
| Code: | | <td><a href="{U_INDEX}"><img src="templates/myfs_testhtml1/images/{LANG}top_bar_index.gif" width="205" height="26" border="0" alt="{L_INDEX}" title="{L_INDEX}" /></a></td> |
Change the width And height to be the same as the rest of the buttons in this example the other buttons are showing..
| Code: | | width="80" height="26" |
Please remember that all templates vary so you may not see the exact code but the problem should always be that the index height and width needs to be changed to a smaller number.
|