Need ThumbNail plugin for WordPress

Discussion in 'WordPress' started by Adam Wojtasik, Mar 1, 2008.

  1. #1
    HI, im having some troubles finding out how to make a thumbnails in a post...
    i want to make a table of thumbnailed pictures instead of having 30 huge blown up pictures..... anybody help?
     
    Adam Wojtasik, Mar 1, 2008 IP
  2. Pandemix

    Pandemix Well-Known Member

    Messages:
    954
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    120
    #2
    When you upload a picture when posting, just check the "Thumbnail" part when it asks you how you want to display an image.
     
    Pandemix, Mar 1, 2008 IP
  3. mizaks

    mizaks Well-Known Member

    Messages:
    2,066
    Likes Received:
    126
    Best Answers:
    0
    Trophy Points:
    135
    #3
    And if you want to set the dimensions of the thumbnail you can use this plugin.
     
    mizaks, Mar 1, 2008 IP
  4. gft

    gft Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Thanks for that link. It is exactly what I needed at this moment. Now, is there a trick to wrapping my text around the pic?:D
     
    gft, Mar 1, 2008 IP
  5. mizaks

    mizaks Well-Known Member

    Messages:
    2,066
    Likes Received:
    126
    Best Answers:
    0
    Trophy Points:
    135
    #5
    You'll need to float the image. In your stylesheet add something like:

    
    .ImgFloatRight {
        position: relative;
        float: right;  /* or left */
        border: 1px solid #B3ADA1; 
        margin: 0 10px 0 10px;
        }
    
    Code (markup):
    In your post use <img class="ImgFloatRight" src="picture.gif" />. Image will be on right side of post and text will go around it.
     
    mizaks, Mar 1, 2008 IP
  6. gft

    gft Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Thank you. I don't have it working yet, but I'll keep working on it.:)
     
    gft, Mar 1, 2008 IP