tags:

views:

60

answers:

3

in jquery accordion control I am displaying one image along with description.but description is coming below the image.I want to display inline with the image. my code-

<div>
                        <p>
                        <!-- avatar -->
                        <img src="images/manage.jpg" alt="" />
                        <!-- /avatar -->
                          Airlink's Managed Services supports a "build-operate-transfer" model, enabling service providers to quickly and cost-effectively build out a large-scale, broadband wireless network by initially outsourcing operational functions to Pronto and eventually transferring operations in-house, if desired. 
                    </br></p>
                          As part of the service, Airlink provides all the back-office operations for customers from its Network Operations Center (NOC), leveraging its leading UniFi OSS platform.</p>
                        <p>
                          <a href = "#" >Read More.. </a>
                        </p>
                    </div>
+1  A: 
<img src="images/manage.jpg" alt="" style="float:left;" />

And I think, you should move image out of <p>

Instead of </br> use <br />

VMAtm
A: 

You got two options to accomplish that:

  • Put that description into an element, span for instance and declare it as positioned absolute (little css more there)

  • create an element and set that image as css background-image

jAndy
A: 

Second way to do this:

<img src="images/manage.jpg" alt="" align="left" />
GOsha
Deprecated, 1998-style of doing it. Should be avoided.
Arve Systad