Quote:
Originally Posted by ti07shadow
the bold and italics tags you used in this are not reccomended by the w3c beacuse it doesnt show properly on every web browser.
It is reccomended to use <strong> and <em>
Code:
<vb:if condition="$onlinestatus==0"><font color="#FDD017"><strong><em>Offline</em></strong></font></vb:if>
<vb:if condition="$onlinestatus==1"><font color="#00FF00"><strong><em>Online</em></strong></font></vb:if>
<vb:if condition="$onlinestatus==2"><font color="#87AFC7"><strong><em>Invisible</em></strong></font></vb:if>
|
Strong does not work properly on every browser, the code above will not display the font in bold in the chrome browser but does so in IE, still safer to use <b><i> as it works in every browser.