Page 1 of 2 12 LastLast
Results 1 to 10 of 16

Thread: Image holders

  1. #1
    Join Date
    Mar 2008
    Posts
    17
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Image holders

    Hi i asked my mate how to make imageholders and he said you need to use css and abit of php does anyone know how?

  2. #2
    Join Date
    Jan 2007
    Posts
    629
    Thanks
    10
    Thanked 28 Times in 28 Posts

    Default

    Can you define image holder? I can probably help, but I found nothing on google telling me what an "image holder" is.
    --Jas
    function GreatMinds(){ return "Think Like Jas"; }
    I'm gone for a while, but in the meantime: Try using my FTP script | Fight Bot Form Submissions

  3. #3
    Join Date
    Mar 2008
    Posts
    17
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default



    That is a image holder above.

  4. #4
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    an image holder is either a "transparent" image that just takes up the necessary space, or it is another element used as a container to assign an image to when it is assigned.

    Image holders are typically used when creating a slideshow of some sort. before the "show" starts, a default image should be declared... aka it "holds" the image place.

  5. #5
    Join Date
    Jan 2007
    Posts
    629
    Thanks
    10
    Thanked 28 Times in 28 Posts

    Default

    So, wouldn't you just need something like:
    Code:
    <div style="height:200px;width:150px;"></div>
    ?
    --Jas
    function GreatMinds(){ return "Think Like Jas"; }
    I'm gone for a while, but in the meantime: Try using my FTP script | Fight Bot Form Submissions

  6. #6
    Join Date
    Mar 2008
    Posts
    17
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks for that but i wont to use the pic below but some told me i can do it in css.

  7. #7
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Try this:

    HTML:
    Code:
    With Image
    <div class="image-holder">
         <img src="a/image.jpg" />
    </div>
    
    Without Image
    <div class="image-holder">
    </div>
    CSS:
    Code:
    div.image-holder {
       height:200px;
       width:200px;
       overflow:hidden;
       background:url(nopic.jpg);
    }
    Anything highlighted, you need to change. What each thing means should be pretty self-explanatory. If not, post your questions.

  8. #8
    Join Date
    Mar 2008
    Posts
    17
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Sorry but that dont really help cos i cant change the image

  9. #9
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Quote Originally Posted by dobbin View Post
    Sorry but that dont really help cos i cant change the image
    What exactly do you need to do, then? If you don't have access to the code, you won't be able to make any changes!

    Maybe you didn't understand my code. You have to change what I have highlighted. So if there is some image that you have to use. Just put in its URL.

  10. #10
    Join Date
    Mar 2008
    Posts
    17
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Kk do you have a bebo account if you do i wont somehting like that but with writing in the image holder like the one below

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •