I'm a CSS noob looking for help, and I'm guessing most of you could solve this with your eyes closed.
I've been trying to link the logo image that appears in the header of our website to the home page. The problem for me is that the image is called within CSS, and then the header block called by the HTML template. I've scoured the Internet for the proper syntax of linking a CSS background image without success.
FYI, the call for the image within CSS is coded as follows in the style sheet:
Code
#fpic
{
width: 686px;
border: 1px inset #888;
height: 200px;
background-color: #999999;
clear: both;
background: url('../images/header.jpg') no-repeat;
}
{
width: 686px;
border: 1px inset #888;
height: 200px;
background-color: #999999;
clear: both;
background: url('../images/header.jpg') no-repeat;
}
and the call within the HTML template is as follows:
Code
<!-- This layer contains the pic(background), and a right side menu -->
<div id="fpic">
<div id="fpic">
Help? Thanks a bunch in advance.
