This is a migrated thread and some comments may be shown as answers.

Eliminate image 1 of 1 from Lightbox

1 Answer 133 Views
LightBox
This is a migrated thread and some comments may be shown as answers.
Jose
Top achievements
Rank 1
Jose asked on 06 Nov 2013, 05:40 PM
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();
        }


 

1 Answer, 1 is accepted

Sort by
0
Gary
Top achievements
Rank 1
answered on 08 Nov 2013, 08:43 PM
I had a similar problem Jose. In order to eliminate the "image 1 of 1" text from your LightBox, you can try inserting the following script into your page. It worked for me, hope it works for you.

.rltbPager

{

display: none;

}

Tags
LightBox
Asked by
Jose
Top achievements
Rank 1
Answers by
Gary
Top achievements
Rank 1
Share this question
or