Connecting Tech Pros Worldwide Forums | Help | Site Map

background image not showing

Member
 
Join Date: Oct 2007
Posts: 35
#1: Jun 1 '08
Hi all,

I have a css for my html files, everything works fine except the background image. It doesn't show. My browser is IE7. Here is how my files construct:

test.html:
Expand|Select|Wrap|Line Numbers
  1. <link href="style/main_test.css" rel="stylesheet" type="text/css">
  2.     ......
  3.     <div id="top_layout">
  4.    <span class="campus_menu">| <a href="http://www.google.com">Google Home</a>  | </span>
  5.  </div>
  6.  
  7.  
style/main_test.css:
Expand|Select|Wrap|Line Numbers
  1.         #top_layout{
  2.              margin:0px 0px 0px 0px;
  3.              background-imgage:url(../images/header_top_bg.jpg);
  4.              background-repeat:repeat-x;
  5.              width: 1024px;
  6.              height: 30px;
  7.          }
images/header_top_bg.jpg

Anyone suggestion will be appreciated!!

Member
 
Join Date: Oct 2007
Posts: 35
#2: Jun 1 '08

re: background image not showing


I replace background-image with background, now it works.
Reply