can I align the text in webimagebutton to the right with css?
Hi garyrg9,
Sure, you can do that. The best place to get info on setting css properties is through W3Schools.com.
For this objective, you can set the Padding-Left property on the element holding the image button, such as a div. For example this pushes the control to the left 200 pixels:
div.container
{padding-left: 200px;}
....
<div class="container">
<igtxt:WebImageButton ID="WebImageButton1" runat="server">
</igtxt:WebImageButton>
</div>
For more on W3Schools you can check-out their
http://www.w3schools.com/
http://www.w3schools.com/css/css_padding.asp
Hi,
Please let me know if you need any additional assistance regarding this.