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

Label position

1 Answer 115 Views
Captcha
This is a migrated thread and some comments may be shown as answers.
Andre
Top achievements
Rank 1
Andre asked on 16 Jul 2013, 07:03 PM
Is it possible to have the label ( "enter code here" )positioned above the text box?

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 17 Jul 2013, 05:22 AM
Hi Andre,

Please have a look at the following code I tried which works fine at my end.

ASPX:
<telerik:RadCaptcha ID="RadCaptcha1" runat="server" CaptchaTextBoxCssClass="textboxstyle"
    CaptchaTextBoxLabelCssClass="labelstyle" CaptchaTextBoxLabel="Enter Code Here">
</telerik:RadCaptcha>

CSS:
<style type="text/css">
    .textboxstyle
    {
        margin-top: 23px;
    }
         
    .labelstyle
    {
        margin-left: -140px;
        position: fixed;
    }
</style>

Thanks,
Shinu.
Tags
Captcha
Asked by
Andre
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or