I just had a similar problem. I wanted to hide a link in the same area and put a <!-- BEGIN switch_user_logged_in --> MY LINK <!-- END switch_user_logged_in -->.
This caused to hide the complete line instead only the link.
But: This only happens in the Vanilla phpBB with subSilver theme (my test forum). The same switch works in Orion (my main board).
So I presume, that some switches are going to make trouble. In that case i think, Oxpus help would be really appreciated ¢¦
Let us know, what happens on your side ...
Regards,
Felix
Ok. I played around. Try following:
Search
Code: Alles auswählen
</tr>
<!-- END switch_avatar_local_gallery -->
<!-- END switch_avatar_block -->
<tr>
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}
<input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" />
<input type="reset" value="{L_RESET}" name="reset" class="button" />
</td>
</tr>
</table>
Replace with
Code: Alles auswählen
</tr>
<!-- END switch_avatar_local_gallery -->
<!-- END switch_avatar_block -->
</table>
<table width="70%" cellspacing="2" cellpadding="0" border="0" align="center">
<tr>
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}
<input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" />
<input type="reset" value="{L_RESET}" name="reset" class="button" />
</td>
</tr>
</table>
So splitting the button line into an own table. As this one works for me, it might work for you too.