Background Image Problem with Custom Theme

Permalink
I built a custom theme in Dreamweaver and followed directions to create a custom theme. I have one small problem that is driving me crazy. The background will not display. The site is not yet live but can be seen here:http://saturn.phpwebhosting.com/~whoknew/.
Everything else in my style sheet works well. Here is the code from main.css

/* HTML Tag Redefinition */
html, body {height: 100%; }
body {
text-align: center;
padding: 0px;
margin: 0px;
background: none url(themes/images/qmark-background.jpg) repeat;
}

I would really appreciate it if someone could help me figure this out.

 
JCinch replied on at Permalink Reply
Hi. In the html file, remove the line with the location to the css file, and replace it with

<style type="text/css">
<!--
<PUT CSS HERE>
-->
</style>


Remove the "<PUT CSS HERE>" and copy and paste everthing thats in main.css there.

Before themes, put
$this->getViewPath();


Hopefully this will work for you! I tried to remember this off of the top of my head.

Rgds,
fikelfikel