Code:
<asp:Button ID="AddQuestion" Text="Add Question" runat="server"
CommandName="AddRow" CommandArgument="AddRow"></asp:Button>
<div align="right" style="vertical-align:text-top">
<asp:linkButton id="deselect" visible="true" text="Deselect Row" CommandName="Deselect"
style="vertical-align:middle" OnClick="DeselectQuestionsRow" runat="server"/>
<asp:ImageButton ID="UpQuestion" text="Move Up" visible="true" runat="server"
ImageUrl="/images/arrowUp.gif" style="height:16px;width:16px;vertical-align:top" CommandName="Up"
OnClick="MoveQuestionRowUp" AlternateText="^"/>
<asp:ImageButton ID="DownQuestion" text="Move Down" visible="true" runat="server"
ImageUrl="/images/arrowDown.gif" style="height:16px;width:16px;;vertical-align:bottom" CommandName="Down"
OnClick="MoveQuestionRowDown" AlternateText="v"/>
</div>
I have the following with a button that I want on the right side of my footer and a link and 2 images on the right side.
What have here works fine.
But now I would like to get the first image over the 2nd so that the up arrow image is above the down arrow.
I tried various combinations of floats but can't seem to get it to work.
Is there a way to do that?
Thanks,
Tom