Hello I am trying to hide/eliminate the image 1 of one from the ligtbox
thank you
<telerik:RadLightBox ID="FeedbackLightBox" runat="server" Modal="true">
<ClientSettings>
<AnimationSettings HideAnimation="Resize" NextAnimation="Fade" PrevAnimation="Fade" ShowAnimation="Resize" />
</ClientSettings>
<Items>
<telerik:RadLightBoxItem>
<ItemTemplate>
<div>
<br />
<h2>
Email Address</h2>
<img style="" alt="" src="<%= ResolveUrl("~/images/popup_underline.gif") %>" width="80%"><br />
<br />
The email address you enter will be used as your unique login ID. You will also
receive all Portal notifications to this email address.<br />
<br />
If this email address is in use, please verify that another user is not already
registered with this email address.
<br />
<br />
If this is your email address and you have forgotten the password, please click <a
href="<%= ResolveUrl("~/Profile/ResetPassword.aspx") %>">here</a> to go to the
Reset Password page.
<br />
<br />
</div>
</ItemTemplate>
</telerik:RadLightBoxItem>
</Items>
</telerik:RadLightBox>
<a href="#" onclick=" OpenCodeLightBox();" class="left-field poplight"></a>
function OpenCodeLightBox() {
var lightBox = $find('<%= FeedbackLightBox.ClientID %>');
lightBox.show();
}
thank you
<telerik:RadLightBox ID="FeedbackLightBox" runat="server" Modal="true">
<ClientSettings>
<AnimationSettings HideAnimation="Resize" NextAnimation="Fade" PrevAnimation="Fade" ShowAnimation="Resize" />
</ClientSettings>
<Items>
<telerik:RadLightBoxItem>
<ItemTemplate>
<div>
<br />
<h2>
Email Address</h2>
<img style="" alt="" src="<%= ResolveUrl("~/images/popup_underline.gif") %>" width="80%"><br />
<br />
The email address you enter will be used as your unique login ID. You will also
receive all Portal notifications to this email address.<br />
<br />
If this email address is in use, please verify that another user is not already
registered with this email address.
<br />
<br />
If this is your email address and you have forgotten the password, please click <a
href="<%= ResolveUrl("~/Profile/ResetPassword.aspx") %>">here</a> to go to the
Reset Password page.
<br />
<br />
</div>
</ItemTemplate>
</telerik:RadLightBoxItem>
</Items>
</telerik:RadLightBox>
<a href="#" onclick=" OpenCodeLightBox();" class="left-field poplight"></a>
function OpenCodeLightBox() {
var lightBox = $find('<%= FeedbackLightBox.ClientID %>');
lightBox.show();
}