1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Need Urgent Help with this HTML coding. Please Help.

Discussion in 'HTML & Website Design' started by rome9t9, Dec 22, 2008.

  1. #1
    Ok, I am total novice to HTML. I was making this page on my blog and got totally stuck. The page in question is http://uprightcleaners.com/demo-page

    The following is the HTML code for the contents of this page

    My Problem:
    As you guys can see that the bottom right of each image has the sentence "Yellow Vacuum Cleaner". And below each image is "The best in the town
    Great reviews".

    But I want it to modify in such a way that "Yellow Vacuum Cleaner", "The best in the town" and "Great reviews" both come on right side of each image.

    Something like on this page: http://www.nextag.com/Vacuum-Cleaners/search-html

    here beside the image of each product is the a li'l product description. please ignore the "pricing" and "compare prices".

    I want tomething like this and a line that divides the two items.

    Thanks.
     
    rome9t9, Dec 22, 2008 IP
  2. ExtremeData

    ExtremeData Well-Known Member

    Messages:
    450
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    125
    #2
    Use this code.

    <table width="400" border="0" cellspacing="10" cellpadding="5">
      <tr>
        <th scope="col"><a href="http://uprightcleaners.com/wp-content/uploads/2008/12/dysondc07.jpg"><img class="alignleft size-thumbnail wp-image-50" title="dysondc07" src="http://uprightcleaners.com/wp-content/uploads/2008/12/dysondc07-150x150.jpg" alt="" width="150" height="150" /></a></th>
        <th scope="col">Yellow Vacuum Cleaner
    The best in the town
    Great reviews</th>
      </tr>
      <tr>
        <th scope="col"><a href="http://uprightcleaners.com/wp-content/uploads/2008/12/dysondc07.jpg"><img class="alignleft size-thumbnail wp-image-50" title="dysondc07" src="http://uprightcleaners.com/wp-content/uploads/2008/12/dysondc07-150x150.jpg" alt="" width="150" height="150" /></a></th>
        <th scope="col">Yellow Vacuum Cleaners
    The best in the town
    Great reviews</th>
      </tr>
    </table>
    Code (markup):
    If you want tableless(with div's) let me know.
     
    ExtremeData, Dec 22, 2008 IP
  3. rome9t9

    rome9t9 Peon

    Messages:
    1,144
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thanks for the solution. Please can you show me the tableless code?
    Also a separation line that separates both the items.

    Thanks.
     
    rome9t9, Dec 22, 2008 IP
  4. ExtremeData

    ExtremeData Well-Known Member

    Messages:
    450
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    125
    #4
    You can make two div's with display:inline and to add a image between them (to be like a separation line)
    If you have time to wait I'll make a image for you.
     
    ExtremeData, Dec 22, 2008 IP
  5. rome9t9

    rome9t9 Peon

    Messages:
    1,144
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I am sorry to say but my HTML is zero. I am an SEO but my coding is Nada.
    Ya sure I will wait.
     
    rome9t9, Dec 22, 2008 IP
  6. ExtremeData

    ExtremeData Well-Known Member

    Messages:
    450
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    125
    #6
    Sorry for the delay.
    You can use this code :
    <table width="400" border="0" cellspacing="10" cellpadding="0">
      <tr>
        <th scope="col"><a href="http://uprightcleaners.com/wp-content/uploads/2008/12/dysondc07.jpg"><img class="alignleft size-thumbnail wp-image-50" title="dysondc07" src="http://uprightcleaners.com/wp-content/uploads/2008/12/dysondc07-150x150.jpg" alt="" width="150" height="150" /></a></th>
        <th scope="col" background="line.png" width="4"></th>
        <th scope="col"><p>Yellow Vacuum Cleaner</p><p>The best in the town</p><p>Great reviews</p></th>
      </tr>
      <tr>
        <th scope="col"><a href="http://uprightcleaners.com/wp-content/uploads/2008/12/dysondc07.jpg"><img class="alignleft size-thumbnail wp-image-50" title="dysondc07" src="http://uprightcleaners.com/wp-content/uploads/2008/12/dysondc07-150x150.jpg" alt="" width="150" height="150" /></a></th>
        <th scope="col" background="line.png" width="4"></th>
        <th scope="col"><p>Yellow Vacuum Cleaner</p><p>The best in the town</p><p>Great reviews</p></th>
      </tr>
    </table>
    Code (markup):
    The image line.png is attached to this post.
     

    Attached Files:

    • line.png
      line.png
      File size:
      238 bytes
      Views:
      37
    ExtremeData, Dec 22, 2008 IP
    rome9t9 likes this.
  7. rome9t9

    rome9t9 Peon

    Messages:
    1,144
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Thanks ExtremeData. You solved it
     
    rome9t9, Dec 22, 2008 IP