-
- What Size / Ratio Website Background Image Should I Use?
-
HTML IMG Tags?
lol I cant post my message its says I can't post links all the time... I also edited the code to make it do what you need but i cant even post the source code here... so google this: Scanning Folders with PHP nettuts the first link... and edit it to make it work as needed... very nice protection you got here, I can't help user because of this <?php $featured_dir = 'images/featured/'; $scan = scandir($dir); for ($i = 0; $i<count($scan); $i++) { if ($scan[$i] != '.' && $scan[$i] != '..') { if (strpos($scan[$i], '.jpg') !== false) { echo ' <a href="' . $featured_dir . $scan[$i] . '">' . $scan[$i] . '</a><br/> '; } } }; ?> ok somehow it worked place this between <body> tags and edit folder location as needed. code originally created by Jeffrey Way for Nettuts.
- What will save server res: One image resized or multiple different sized images?
-
Code for Responsive Web Design
You can use CSS grid frameworks such as 960 grid framework etc. if that is what you looking for...
-
NooBCube reacted to a post in a topic:
What will save server res: One image resized or multiple different sized images?
- What will save server res: One image resized or multiple different sized images?
-
What will save server res: One image resized or multiple different sized images?
Hello, I didn't found anything in Search so I am asking here. sorry if this been already asked before... lets say I have one image and I use it multiple times in my design but in different sizes. What will be better (save more server resources): one same image resized with JS script or CSS or multiple images different size each? As I think, one image with resize is better but Its only my opinion... Also, is it makes difference if all this images located on same page or not? P.S Does anyone know any link where I can get all this info about site (design) optimization etc? Thank you!