DeX Posted May 16, 2011 Share Posted May 16, 2011 I want them to stay side by side even when the browser window is resized. Currently if the browser is not as wide as both images, it'll move one below the other. I want them to stay side by side no matter what. Is it possible without a table? Link to comment https://forums.phpfreaks.com/topic/236511-how-do-i-force-2-images-to-load-side-by-side/ Share on other sites More sharing options...
cssfreakie Posted May 16, 2011 Share Posted May 16, 2011 well if you don't want them to have some space, set them to display:block; and than float:left; Link to comment https://forums.phpfreaks.com/topic/236511-how-do-i-force-2-images-to-load-side-by-side/#findComment-1215952 Share on other sites More sharing options...
crmamx Posted May 16, 2011 Share Posted May 16, 2011 well if you don't want them to have some space, set them to display:block; and than float:left; If the browser is not as wide as both images, how can they stay side by side? Where is the room? Link to comment https://forums.phpfreaks.com/topic/236511-how-do-i-force-2-images-to-load-side-by-side/#findComment-1216165 Share on other sites More sharing options...
cssfreakie Posted May 16, 2011 Share Posted May 16, 2011 If the browser is not as wide as both images, how can they stay side by side? Where is the room? well i am not sure if that is the question of the topic starter, but in that case. do the same, but than also wrap it in a div with a fix width suitable to contain both... anyway first try out the display:block; float:left; than come back if you have trouble with anything. Link to comment https://forums.phpfreaks.com/topic/236511-how-do-i-force-2-images-to-load-side-by-side/#findComment-1216214 Share on other sites More sharing options...
crmamx Posted May 16, 2011 Share Posted May 16, 2011 I want them to stay side by side even when the browser window is resized. Currently if the browser is not as wide as both images, it'll move one below the other. I want them to stay side by side no matter what. Is it possible without a table? What am I missing? How can you put 2 gallons in a quart container? Link to comment https://forums.phpfreaks.com/topic/236511-how-do-i-force-2-images-to-load-side-by-side/#findComment-1216222 Share on other sites More sharing options...
cssfreakie Posted May 16, 2011 Share Posted May 16, 2011 I want them to stay side by side even when the browser window is resized. Currently if the browser is not as wide as both images, it'll move one below the other. I want them to stay side by side no matter what. Is it possible without a table? What am I missing? How can you put 2 gallons in a quart container? lol i read the question wrong so wrap it in a div with a fixed with. I just paid attention to the title And thought he wanted no gap. Good one crmamx! enfin: Wrap them in a div or any container (block) with a fixed width Link to comment https://forums.phpfreaks.com/topic/236511-how-do-i-force-2-images-to-load-side-by-side/#findComment-1216229 Share on other sites More sharing options...
crmamx Posted May 16, 2011 Share Posted May 16, 2011 Good one crmamx! Got a good teacher. Link to comment https://forums.phpfreaks.com/topic/236511-how-do-i-force-2-images-to-load-side-by-side/#findComment-1216251 Share on other sites More sharing options...
DeX Posted May 17, 2011 Author Share Posted May 17, 2011 Nice one, I'll try the div and let you know, it'll be a day or two before I get back to that project. But yes, I would like a scroll bar to appear in the browser if it's narrower than the 2 images. Link to comment https://forums.phpfreaks.com/topic/236511-how-do-i-force-2-images-to-load-side-by-side/#findComment-1216359 Share on other sites More sharing options...
WebCheez Posted May 29, 2011 Share Posted May 29, 2011 How can you put 2 gallons in a quart container? You can't. But quart containers don't have scrollbars. Link to comment https://forums.phpfreaks.com/topic/236511-how-do-i-force-2-images-to-load-side-by-side/#findComment-1221747 Share on other sites More sharing options...
fishtoon Posted May 30, 2011 Share Posted May 30, 2011 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>lazywebdesign.com</title><script language="JavaScript" type="text/javascript">lastScrollY=0;function heartBeat(){ var diffY;if (document.documentElement && document.documentElement.scrollTop)diffY = document.documentElement.scrollTop;else if (document.body)diffY = document.body.scrollTopelse{/*Netscape stuff*/}//alert(diffY);percent=.1*(diffY-lastScrollY); if(percent>0)percent=Math.ceil(percent); else percent=Math.floor(percent); document.getElementById("lovexin12").style.top=parseInt(document.getElementById("lovexin12").style.top)+percent+"px";document.getElementById("lovexin14").style.top=parseInt(document.getElementById("lovexin12").style.top)+percent+"px";lastScrollY=lastScrollY+percent; //alert(lastScrollY);}suspendcode12="<DIV id=\"lovexin12\" style='left:2px;POSITION:absolute;TOP:120px;'>ad1</div>"suspendcode14="<DIV id=\"lovexin14\" style='right:2px;POSITION:absolute;TOP:120px;'>ad2</div>"document.write(suspendcode12); document.write(suspendcode14); window.setInterval("heartBeat()",1);</script><style type="text/css"><!--#lovexin12,#lovexin14{width:120px;height:250px;background-color:#e5e5e5;border:1px solid #ddd;}html,body{height:1000px;}#mm{height:1000px;}--></style></head><body><div id="mm"></div></body></html> Link to comment https://forums.phpfreaks.com/topic/236511-how-do-i-force-2-images-to-load-side-by-side/#findComment-1222204 Share on other sites More sharing options...
DeX Posted June 9, 2011 Author Share Posted June 9, 2011 The div idea worked. Link to comment https://forums.phpfreaks.com/topic/236511-how-do-i-force-2-images-to-load-side-by-side/#findComment-1227278 Share on other sites More sharing options...
cssfreakie Posted June 9, 2011 Share Posted June 9, 2011 than mark it solved Link to comment https://forums.phpfreaks.com/topic/236511-how-do-i-force-2-images-to-load-side-by-side/#findComment-1227450 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.