Results 1 to 6 of 6

Thread: help

  1. #1
    Join Date
    Apr 2008
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default help

    How whould you change this to also be up and down. So its like 4 pics across then the rest going down not just left to right..

    $bld.=" leftrightslide[".$cc."]='<a href=index.php?site=profile&id=".$dmm[userID]."><img border=0 height=62 src=".$picle." border=0></a>'n ";
    $bild.="<a href='index.php?site=profile&id=".$dmm[userID]."'><img border='0' height='62' src='".$picle."'></a> ";

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

    Default

    Quote Originally Posted by talent View Post
    How whould you change this to also be up and down. So its like 4 pics across then the rest going down not just left to right..

    $bld.=" leftrightslide[".$cc."]='<a href=index.php?site=profile&id=".$dmm[userID]."><img border=0 height=62 src=".$picle." border=0></a>'n ";
    $bild.="<a href='index.php?site=profile&id=".$dmm[userID]."'><img border='0' height='62' src='".$picle."'></a> ";
    You mean like:
    Code:
    $bld.=" leftrightslide[".$cc."]='<a href=index.php?site=profile&id=".$dmm[userID]."><img border=0 height=62 src=".$picle." border=0></a>'n <br />";
    $bild.="<a href='index.php?site=profile&id=".$dmm[userID]."'><img border='0' height='62' src='".$picle."'></a> ";
    ???
    --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
    Apr 2008
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Honestly I dont know how to ask this is a php script that has some java in it. Right now the images roll left to right. I really dont want that I what to have 4 images in one roll foward buy another roll below it. Each new member I add will just go in order...

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

    Default

    I don't understand, still. can you perhaps post more of the code?
    --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

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

    Default

    Quote Originally Posted by talent View Post
    Honestly I dont know how to ask this is a php script that has some java in it. Right now the images roll left to right. I really dont want that I what to have 4 images in one roll foward buy another roll below it. Each new member I add will just go in order...
    I doubt it has java in it... you may be talking about JavaScript which is an ENTIRELY different language, but that really is not your problem

    Before I help you with this problem we need to define the problem... from what I gather you have a setup similar to

    link-img link-img link-img link-img link-img
    and you want there to be one row of 4 images? then every image after that you want to display below the first link vertically like

    Code:
    link-img   link-img   link-img   link-img   
    link-img
    link-img
    link-img
    link-img
    or did you want there to be four columns with four data cells per row like below

    Code:
    link-img   link-img   link-img   link-img   
    link-img   link-img   link-img   link-img   
    link-img   link-img   link-img   link-img   
    link-img   link-img   link-img   link-img
    if one of those is what you are looking for, please confirm, if not,,, can you please show us what you are looking for, using text to represent the rendered display like i do above

  6. #6
    Join Date
    Apr 2008
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    yes like your last thing. 4 colums with 4 rows. I want it to continue to cascade down that way. but if its only 4x4 then that should be enough

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
  •