Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<asp:UpdatePanel runat="server">
	<ContentTemplate>
		<div style="padding: 0px 45px 0px 45px">
			<asp:FormView ID="fvAccounts" runat="server" DataKeyNames="AccountId" DataSourceID="edsAccounts" EnableModelValidation="True" Width="100%">
				<EditItemTemplate>
<%-- continuing --%>

I want the FormView to be 45px (hippos :P) away from the page's width, so I wrapped it with a div setting its padding to 45 for right and left, but it didn't work; the right side goes out the div. I want it to be minimized within the div.

Note the black line in the image, it shows where the edge of the parent is, I want the external right side to be 45px away from it to inside. example

share|improve this question

4 Answers

The CSS validator is your friend.

http://jigsaw.w3.org/css-validator/validator?text=a{padding%3A45%3B}&profile=css21&usermedium=all&type=none&warning=1&lang=en

45 what? Hippos? For lengths (other than 0) units are required.

padding: 45mm;
padding: 45%;
padding: 45pt;
padding: 45px;

and so on.

share|improve this answer
For some reason the link syntax isn't working, so I've just pasted the URL directly. – Quentin Jun 12 '09 at 8:03
Sorry for bothering, I updated my question. – Shimmy Jun 12 '09 at 8:14

Remove the div and give a "0px 45px" margin to the FormView.

share|improve this answer
I would do that if FormView would of had a property Margin, but it ain't and I want the style to be inline. – Shimmy Jun 12 '09 at 9:05

You must have a width set on some element inside the <div style="padding:0 45px">. Reduce the width by 90px because that space is now taken up by the padding.

share|improve this answer
can you please show me a brief example, i didn't getcha – Shimmy Jun 13 '09 at 21:25
up vote 0 down vote accepted

Well I solved my issue in quite a different way.

I set the FormView's Width to 80% and I wrapped it with a center Html tag.

<center>
    <FormView Width="80%" runat="server" />
</center>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.