good morning (or afternoon to some of you) everyone...
as i get deeper into this web page building thing... i keep running across more problems then solutions... and considering how much smarterer most of you are when it comes to this thing then me, i am here once again to ask for advice or a helpful link...
Anyways, i have few DIVs i am using (left, right, center) for some adds on the bottom of my page... and they look really cool when i view the page in full (max size) mode... however when i make it smaller (you know that Restore Down... not minimize button)... my pics don't keep their right proportion (they get too fat... as in width is smaller then needed in order to keep same proportions)
i think there must be a tag of some sort to make picture size relative to the screen (like in %) to solve this... am i right? wroght?
here is my rather.... ehh... advanced?... code in CSS file
Code:
.addcontainer {
width: 100%;
height: 100px;
}
#addleft {
float: left;
width: 33%;
}
#addcenter {
display: inline;
float: left;
width: 33%;
}
#addright {
float: right;
width: 33%;
}
#add {
float: center;
width: 90%;
}
and here is what i have in HTML portion...
Code:
<div class="addcontainer">
<div id="addleft">
<div id="add">
<img style="width: 100%; height: 100%;"
alt="Add 01" src="Add_01.jpg">
</div></div>
<div id="addcenter">
<div id="add">
<img style="width: 100%; height: 100%;"
alt="Add 02" src="Add_02.jpg">
</div></div>
<div id="addright">
<div id="add">
<img style="width: 100%; height: 100%;"
alt="Add 03" src="Add_03.jpg">
</div></div>
</div>
now i am sure some of you might get jelause and try to still my awsome code.... if so, all i ask is for some sort of moneys ;0)
anyways... if anyone can help me out... well... that would be just great!!!
|