![]() |
|
|
Welcome to the { mindfrost82.com } forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Re: Image positioning
I'm assuming if you are positioning layers that you have an understanding of
CSS. Just add a z-index to the image so that it is higher than the z-index of the image below it. Then the image will appear over top of the other image given that the positioning is correct. |
|
|||
|
Re: Image positioning
>>I only have a very basic understanding of CSS
You will need more than that if you want to use AP (Absolutely Positioned) elements and Z-index. Have you picked up a book on CSS yet? -- Walt "fralexis" <webforumsuser@macromedia.com> wrote in message news:g7daqk$ps5$1@forums.macromedia.com... > Ooops. I only have a very basic understanding of CSS. I'm not sure how to > go about this or how to select and image and attach a z-index. Thanks! |
|
|||
|
Re: Image positioning
OK. I do need a lot more education in this. But I see the light at the end of
the tunnel. I got the z-index working. But I do have one problem. Once I get evertything just right I save all and close. Then, when I open back up, the object is in a different place than when I saved it. I have the attribute set as absolute. Is there a way to lock the position? Thanks for you help. I appreciate it! |
|
|||
|
Re: Image positioning
Thanks so much. Here is the code for the area that is troubling me. The
offending graphic is "montreal.gif" and "menu.gif". They are both positioned on top of the "banner.gif". <p><img src="menu.gif" width="730" height="28" border="0" usemap="#Map" class="graphic3" /> <map name="Map" id="Map"><area shape="rect" coords="141,3,237,23" href="registration.html" /> </map><img src="montreal.gif" width="629" height="165" class="graphic2" /><img src="Banner.gif" width="1024" height="329" class="basegraphic" /></p> <p><img src="line.gif" width="1037" height="20" /></p> And here are the css attributes for these graphics.............. .basegraphic { overflow: auto; position: static; z-index: 5; left: auto; top: 0px; right: auto; bottom: auto; } .graphic3 { position: absolute; z-index: 15; left: 157px; top: 324px; } .graphic2 { position: absolute; z-index: 10; left: 307px; top: 153px; right: auto; bottom: auto; visibility: visible; width: 472px; height: 123px; |
|
|||
|
Re: Image positioning
Thanks again. Actually something you wrote solved the problem. You said that
elements with an absolute position remained in the same place while other page elements changed. I figured out that as I changed the magnificaiton to see certain elements better, they threw everything else out of order. Thus, when everything is viewed at 100% it all works just fine. Duh. At least I hope it is solved! |
![]() |
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|