Click to See Complete Forum and Search --> : Help needed to position graphics


Fisbane
01-04-2009, 05:18 PM
I have three graphics I am trying to position in a <div> on my banner. I want one on the far left, one on the far right, and one centered.

Is there a way to do this so that they are in those positions no matter the size of the page the viewer has? Here's the code I have so far. I can't get the right image to go to the far right, and I can't center the middle image.

Any suggestions appreciated.


The CSS Code:

/*Start of Styles for banner section*/
#BSTRA_banner {
background-color: #264A22;
}
/*Style for BSTRA main logo graphics*/
#bstra_logo {
margin: 0px 0px 0px 0px;
padding: 1px 1px 1px 1px;
text-align: center;
}
#MemberLogo {
position: relative;
border: 0px;
left: 0px;
top: 0px;
}
#BugleLogo {
position: relative;
border: 0px;
right: 0px;
top: 0px;
}
/*End of Styles for banner section*/


The HTML Code:
<div id="BSTRA_banner">
<a href="http://webpages.charter.net/bstra.org/BSTRAmemberform.pdf" target=_blank title="Click here to download membership form!"><img src="../Graphics/MembershipLogo.gif" id="MemberLogo"></a><img src="../Graphics/bstrabanner.jpg" id="bstra_logo">
<a href="http://webpages.charter.net/bstra.org/DecBugle2008.pdf" target=_blank title="Read the Bugle Online!"><img src="../Graphics/BugleIcon.gif" id="BugleLogo"></a>
</div>

Nedals
01-04-2009, 06:48 PM
Try a variation on this...

<div style="text-align:center; border:1px solid #000">
<img src="" style="float:left">
<img src="" style="float:right">
<img src="">
</div>


For some reason, this did not work
<img src="" style="margin:0px auto">

Any thoughts out there?

Fisbane
01-04-2009, 07:36 PM
I am very new to CSS.... is the code you suggested trying supposed to go in the external style sheet which I have... or be added into the HTML???

I have been trying different things all to no avail, can't get icons to spread out if given more room.

6StringGeek
01-04-2009, 09:16 PM
That code example is in the html.

Major Payne
01-05-2009, 12:06 AM
<div style="width: 384px; height: 262px; margin: 0 auto;">
<img src="http://img233.imageshack.us/img233/4195/anierrorchickenvocalspx5.gif" style="width: 128px; height: 131px;" alt="" /><img src="http://img149.imageshack.us/img149/1023/anierrorchickenguitarum3.gif" style="width: 128px; height: 131px;" alt="" /><img src="http://img233.imageshack.us/img233/4195/anierrorchickenvocalspx5.gif" style="width: 128px; height: 131px;" alt="" /></div> That's what I used one time. Styling can be moved to external CSS or embedded. Probably can plug in your image paths and adjust widths/heights to suit. Couldn't use your images as they used relative paths and couldn't check it out. The code given is working in my browser as I type. :P