I am currently working with the following code:
body {
background: url("image1") repeat fixed center top #000000;
border: 0 none;
color: #DBDBDB;
font-family: Verdana;
font-size: 9px;
font-weight: normal;
text-decoration: none;
}
inlineContent {
background: url("image2") no-repeat scroll center top transparent !important;
display: inline-block !important;
height: 425px !important;
left: -282px !important;
margin: auto !important;
position: absolute;
right: 0 !important;
top: -425px !important;
width: 900px !important;
z-index: -1 !important;
}
Where I have a general background (first line after body), and I have another image ontop of the background (lines after inlineContent
). How would I be able to add another image, also ontop of the original background, with a different position than the the previous two images?
Thank you in advance!