Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
redblue4356 #1
Background Positioning
I have an image as a background which I want to be centered. I have provided
the code at the end of the message.
I actually want to make it like this macromedia site with a white background
in the center. But I can't get the full image in the browser window. First I
gave center in " background-position-y " but that made only the middle part of
the image visible with the rest of the image going out of the window. So I
later put 20px there. But now I cant get the lower portion of the image in the
browser. I just want the page to scroll so that the full image is visible as
background.
body {
background-color: #000000;
background-image: url(background.png);
background-repeat: no-repeat;
background-position-x: center;
background-position-y: 20px;
background-attachment: scroll;
}
redblue4356 Guest
-
Positioning pop-up menus
Is there any reasonable way to get pop up menus in the same position in MSIE and Firefox. cf http://www.webgeekstress.com/eMeter/index_dwtweak.htm:... -
positioning
im trying to move a div tag to the right side, ive tried using "float" but it doesnt work the way i want it to. i tried setting its position as... -
CSS Div Positioning
Anybody know how to cause a DIV to be aligned to the bottom of the page? If you go to: http://www.tilaru.com/NewSite/index.php you'll see that my... -
Matching Jpeg background with Page Background?
In article <bgpgfq$3sh$1@forums.macromedia.com>, "JohnnyA" webforumsuser@macromedia.com wrote: You can't, because (1) JPEG compression almost... -
OT-Google positioning
Forgive the kinda political post. I am posting this for its humor only, not trying to make a statement, and this seems like as good a group as any... -
mzanime.com #2
Re: Background Positioning
We need to see a URL to better help you, but in the meantime you can give this
a shot:
body {
background-color: #000000;
background-image: url(background.png);
background-repeat: no-repeat;
background-position: 50% 50%;
background-attachment: fixed;
}
or, even shorter... ;-)
body {
background: #000 url(background.png) 50% 50% no-repeat fixed;
}
mzanime.com Guest
-
redblue4356 #3
Re: Background Positioning
I haven't yet uploaded my pages so I can't provide a link. Actually I haven't
provided any images or text in the lower part. Is it because of that the full
image is not visible. If yes, how can I overcome that coz I won't always
provide stuff at the lower part.
redblue4356 Guest



Reply With Quote

