Quote:
Originally Posted by Kaycee123
I have another option for Edit Weather Options - I've uploaded a little icon and tried to add it on.
How do I change this so it comes up on the same line as the icon?
|
In template:
USERCP_SHELL_ICONS
Find:
Code:
<if condition="$show['profilepiclink']">
<tr><td class="$navclass[profilepic]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20">
<img border="0" src="$stylevar[imgdir_misc]/usercp_icons/picture_edit.gif" width="16" height="16"></td>
<td><a class="smallfont" href="profile.php?$session[sessionurl]do=editprofilepic">$vbphrase[edit_profile_picture]</a></td>
</tr>
</table>
</td></tr>
</if>
After Add:
Code:
<tr><td class="$navclass[customize]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20">
<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/weather_icon.gif" width="16" height="16"></td>
<td>$modifyweatherdata_link</td>
</tr>
</table>
</td></tr>
Hope this helps.