how can i do this?

Discussion in 'HTML & Website Design' started by mytvtalk, Jul 22, 2008.

  1. #1
    hi guys, please look at my site http://www.mytvtalk.com and where it says latest reviews down the bottom i want to add a thumbnail image around 100px by 100px and then i want the title and a bit of text to the right of the image. please help. thanks.
     
    mytvtalk, Jul 22, 2008 IP
  2. itcn

    itcn Well-Known Member

    Messages:
    795
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    118
    #2
    Just add an image with a float: left style. Change this code:

    
    <a href="vantage.html" title="vantage point movie review"><h4>Vantage Point<img src="images/newstory.gif" alt="new review" /></h4></a>
    <p>The thriller that is seen from 8 different vantage points starring losts mathew fox Read More<a href="vantage.html" title="vantage point movie review"> Here >></a></p>
    
    Code (markup):
    to this:

    
    <img src="YOURIMAGENAME.JPG" width="100" height="100" style="float: left;" />
    <a href="vantage.html" title="vantage point movie review"><h4>Vantage Point<img src="images/newstory.gif" alt="new review" /></h4></a>
    <p>The thriller that is seen from 8 different vantage points starring losts mathew fox Read More<a href="vantage.html" title="vantage point movie review"> Here >></a></p>
    
    Code (markup):
     
    itcn, Jul 22, 2008 IP
  3. mytvtalk

    mytvtalk Active Member

    Messages:
    933
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #3
    thank you, worked like a charm :D
     
    mytvtalk, Jul 22, 2008 IP
  4. itcn

    itcn Well-Known Member

    Messages:
    795
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    118
    #4
    Glad to be of assistance!
     
    itcn, Jul 22, 2008 IP