On my blog, jimmyinc.com, I am making a mod that displays a random banner at the top, a JavaScript function called randImg().
To get that to work in the css stylesheet, what do I need to do?
Here is the css code that I currently have:
/***********************************************
* HEADER
***********************************************/
.subheader{
height: 115px; /*185*/
background: randImg() no-repeat;
padding: 70px 0 0 0;
text-align: center;
}
.subheader h1{
font-size: 25pt;
color: #ffffff;
}
That currently doesn't work.
The JavaScript part is already done, I have figured it out.