I am trying to create a custom page template and add an background image to the content area of Twenty Ten of my home page. I cannot tell what part of the CSS needs to be modified to do this.
If I add a background image in this part of the style.css, I get the background image to display on every page.
`#main {
clear: both;
overflow: hidden;
padding: 40px 0 0 0;
}`
So I tried duplicating it and naming it #main2 which I would only put in the new template I've created, but it does not work. Below is the code I have on the template page. Ultimately, I don't understand what the "role" is.
`<div id="container">
<div id="content" role="main">`
Thank you!