I need help with a design that features images in the top 25% of the background, followed by a simple gradient for the rest of the page.
What is the most effective way to showcase the images at the top and then smoothly transition into the gradient?
This is how I approached it:
html{
background: #cac2ac url("../img/body-bg.gif") repeat-y 50% 0;
}
body {
text-align: center;
font-family: Arial;
line-height: 1;
width: 100%;
background: transparent url("../img/body-img-bg.jpg") no-repeat 50% 24px;
}
However, I am facing an issue where the background image for HTML is not showing up in one scenario. Any suggestions or assistance would be greatly appreciated.