Greetings,
I’m very new to Expression Engine. I am in the process of uploading a static HTML site and converting it into an EE dynamic site. My main navigation menu uses CSS background images to display links but I can’t for the life of me get them to display properly. I’ve checked the image path a million times and it’s right. I’ve pasted the code below, I believe my problem source is in the background:url. Thanks in advance!
Here’s the html:
<div class="menu1">
<a href="#%22id=%22home" title="Home"></a>
</div>Here’s the CSS:
.menu1 {
float:left;
width:70px;
height:31px;
padding-top: 20px;
padding-left: 66px;
}
#home {
display:block;
width:70px;
height:31px;
background:url ({site_url}images/FATFF/Design/Links_Sprite/home.jpg) no-repeat;
}
#home:hover{
background-position: 0 -31px;
}