Padding ASP Textbox

DanielS

New Member
Good morning,I am new to ASP.Net and HTML and have been designing a coming soon website the past month. I currently have an issue that there is a lot of excess padding to the right of my webpage (http://openset.azurewebsites.net/).I would like the page to fit on one screen. After doing some investigative work, I have found the object that is causing this is my asp:TextBox that the user inputs their email address into.After searching the CSS I cannot find any sort of excess padding attribute for the TextBox and am at a loss as to how to correct it.The code concerned is:\[code\]<div class="pull"> <asp:TextBox ID="AddEmailName" runat="server" Text="Enter your e-mail here" onfocus="if(this.value =http://stackoverflow.com/questions/15497744/='Enter your e-mail here') this.valuehttp://stackoverflow.com/questions/15497744/= '';" onblur="if(this.value =http://stackoverflow.com/questions/15497744/='Enter your e-mail here' || this.value =http://stackoverflow.com/questions/15497744/='') this.valuehttp://stackoverflow.com/questions/15497744/= 'Enter your e-mail here';" style="text-align:center" Width="300px" Font-Size="Large" ></asp:TextBox> <asp:Button ID="AddEmailButton" runat="server" width="100px" backcolor="#c7b099" forecolor="#000" Text="Notify Me" OnClick="AddEmailButton_Click" CausesValidation="true" /></div>\[/code\]With the CSS pull class used to position the boxes:\[code\].pull {position: relative;left: 525px;}\[/code\]Thank you in advance for any help you may have,Rob
 
Top