skrazydogz |
02-05-2008 01:53 PM |
For this people who wanted no border around the image, please use this code:
Code:
<if condition="$show[guest]">
<!-- Infobar -->
<link rel="stylesheet" href="clientscript/vbulletin_css/infobar.css" type="text/css">
<div id="info"><div id="infobar" align="left"><a href="register.php"><img src="images/alert.png" border="none" /> You are not registered yet. Please click here to register!</a></div></div>
<!-- Infobar -->
</if>
and for german sites please use this code:
Code:
<if condition="$show[guest]">
<!-- Infobar -->
<link rel="stylesheet" href="clientscript/vbulletin_css/infobar.css" type="text/css">
<div id="info"><div id="infobar" align="left"><a href="register.php"><img src="images/alert.png" border="none" /> Achtung! Du bist nicht registriert, klicke bitte hier um dich schnell und kostenlos anzumelden.</a></div></div>
<!-- Infobar -->
</if>
|