Ok I just want to list about 6 or 8 thumbnails on my homepage of recently uploaded images. You can see on my site I completely jacked it up because I have no clue what I'm doing (NSFW!!). Anyone got a second to help? I just want a nice clean looking latest images section where can easily use some php to call 6 or 8 thumbnails to display on the home page. $10 to anyone that can help :help:
Unfortunately that didn't work OK this is now $20 I need someone to design me a nice little CSS image gallery I can embed in the page on my homepage to the right of the upload box. It should say Latest User Images and show 2 rows of 3 thumbnails "about" the size of these http://ximghost.com/gallery.php (if it will fit ) I will give you FTP access to place it. Please PM me ASAP. The last guy wasted 4 days and did nothing
You'd need to use a server side language to get the recently uploaded thumbnails from a database for a gallery like that. I could write a php script to do it if you want, for $25. Have it done by tomorow at the latest.
This is back open AGAIN. Please show me a proof mockup that you can do this BEFORE you say you can do it. 2 designers claimed they could and couldn't. Apparently you have to be fairly good at CSS to get this to work and NOT a novice. Still paying $25 for this.
I can do the nice css gallery but I wouldnt know how to grab the most recently uploaded pics. You would probably need some mysql work for that.
That's fine thats all I need. I can do the mysql coding myself. Please PM me with your MSN contact info.
This is an occassion where it is suitable to use tables, since you are displaying tabular data. It'd be no more than 20 minutes of work for the HTML, and would use less code than if you were to use divs.
What's wrong with doing something like this: CSS: #imgs { float: right; width: 480px; /* = 3 X Thumb Width if showing 6, or 4 x Thumb Width if showing 8*/ font-size: 16px; } #imgs img { width: 160px; /* Width Of Thumbnail */ height: 140px; /* Height Of Thumbnail */ float: left; } Code (markup): XHTML: <div id="imgs"> Latest User Images <img src="1.jpg" alt="desc" /> <img src="2.jpg" alt="desc" /> <img src="3.jpg" alt="desc" /> <img src="4.jpg" alt="desc" /> <img src="5.jpg" alt="desc" /> <img src="6.jpg" alt="desc" /> </div> Code (markup): It only uses one DIV no tables. If you want to show 8 thumbnails on 2 rows change #imgs width to 640px If you want to show 6 thumbnails on 2 rows change #imgs width to 480px (already set to this) You can obviously edit the height and width of the thumbnail displayed and add a gap, border, hover border if you want all from the CSS. You can also easily edit the "Latest User Images" text, inc. colour alignment, font-size, font-style, font-family. You never specified any of these but they can all be easily modified dependant on how you want to style it. The only thing you need to do is call the latest 6/8 images using PHP or whatever you are using inside the XHTML.