Account Status: Free, Plus, Paid
Actions: Background Image on Navbar
Theme: Flexible Squares
Your navbar coding (if from me) currently looks something like this (found in the header section):
#header {
position: relative;
line-height: 25px;
text-align: center;
color: #f7f6f0;
font-family: "trebuchet ms";
font-size: 15px;
width: 750px;
padding: 0px 0px 10px 0px;
margin-bottom: 15px;
text-align: center;
letter-spacing: 1px;
text-transform: normal;
background-color: #226089;
border-left: 1px solid #888888;
border-right: 1px solid #888888;
}
Add this at the bottom...
background-image: url(NAVBAR HEADER IMAGE);
background-repeat: no-repeat;
You will be inserting the image url where the capital letters indicate.
Looks something like this...
#header {
position: relative;
line-height: 25px;
text-align: center;
color: #f7f6f0;
font-family: "trebuchet ms";
font-size: 15px;
width: 750px;
padding: 0px 0px 10px 0px;
margin-bottom: 15px;
text-align: center;
letter-spacing: 1px;
text-transform: normal;
background-color: #226089;
border-left: 1px solid #888888;
border-right: 1px solid #888888;
background-image: url(NAVBAR HEADER IMAGE);
background-repeat: no-repeat;
}
Must have the } after all the coding.