How to change appearance of image and text
I have an image and then there is ajax accordian with text that I want to fall UNDER that image but it is falling to the right of the image. I have a 3 column page. This is happening in the center column.
I tried adding paragraph under the image to no avail. What can I use to make the accordian controlled text appear UNDER my image and not aligned to the right of it?
Thanks for any help. This is the code:
================================================== ===
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" Runat="Server">
<link href="Stylesheet1.css" rel="stylesheet" type="text/css" />
<h3>MyHeading</h3>
blah blah blah.
<p>More blah blah blah</p>
<p></p>
<asp:Image ID="Image1" runat="server" ImageUrl="~/Images/MyImage.gif"
style="float: left; "
GenerateEmptyAlternateText="True" meta:resourcekey="imgChildResource1"
ImageAlign="Middle" />
<p></p>.
<p></p>
<br />
<p></p>
<b><br /> <p></p>
This Web site contains PDF documents that require Adobe Acrobat for viewing.</b>
<p></p> If you don't already have it, you may <a href="http://www.adobe.com/products/acrobat/readstep2.html" target="_blank">Download Acrobat Reader here!</a>
<p></p>
<cc1:Accordion ID="Accordion1" runat="server" SelectedIndex="0"
HeaderCssClass="accordionHeader" ContentCssClass="accordionContent"
FadeTransitions="true" FramesPerSecond="40" TransitionDuration="250"
AutoSize="None" Height="542px" Font-Bold="False" >
<Panes>
<cc1:AccordionPane ID="AccordionPane1" runat="server">
<Header>
<a href ="" onclick="return false;" class="accordionLink"> More about DS-160 </a>
</Header>
<Content>
<h3>About the New DS-160</h3>
<p></p>
BLAH BLAH BLAH....
</p>
<p></p>
BLAH BLAH
</p>
BLAH BLAH
<a href="http://www.mylink/" target="_blank">to website</a> how-to-apply instructions for more details, as well as these <a href="http://more link.html" target="_blank">Frequently Asked Questions</a> blah blah</span>.</b>
<a href="http://mylink.html" target="_blank"> Learn More</a> about the blah. Check back later for implementation update announcements.
</Content>
</cc1:AccordionPane>
<cc1:AccordionPane ID="AccordionPane2" runat="server">
<Header>
<a href ="" onclick="return false;" class="accordionLink"> topic Forms </a>
</Header>
<Content>
<li><a href="http://mylinks/" target="_blank">mylinks</a><br></li>
<li><a href="http://mylinks.pdf" target="_blank">mylinks</a></li>
<li><a href="http://mylinks.pdf" target="_blank">mylinks</a><br></li>
<%--<p xmlns:o="urn:www.microsoft.com/office" xmlns:st1="urn:www.microsoft.com/smarttags" xmlns:w="urn:www.microsoft.com/word" xmlns:x="urn:www.microsoft.com/excel">--%>
</Content>
</cc1:AccordionPane>
==============================
|