Background image not displaying.

This is a discussion on "Background image not displaying." within the Web Page Design section. This forum, and the thread "Background image not displaying. are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jul 20th, 2007, 13:21
Junior Member
Join Date: Jul 2007
Location: England
Age: 24
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Background image not displaying.

I am having trouble getting my background image to display on my DIV.

This is especially odd as the exact code works on another site i created. Where am i going wrong?

http://www.xyis.net/kick/index.html
Code: Select all
#cMain 
{
width: 650px;
background-image: url(Images/cMid.gif);
background-repeat: repeat-y;
}
 
 

Last edited by karinne; Jul 20th, 2007 at 13:24.
Reply With Quote

  #2 (permalink)  
Old Jul 20th, 2007, 14:35
Junior Member
Join Date: Jul 2007
Location: England
Age: 24
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Background image not displaying.

Seemed to have fixed it. Looked like a scope problem.
My code was looking for my pics in the same folder as my CSS file.
using sorted it:

Code: Select all
 
#cMain 
{
width: 650px;
background-image: url(../Images/cMid.gif);
background-repeat: repeat-y;
}
odd. doesn't do this on my other site.
Reply With Quote
  #3 (permalink)  
Old Jul 20th, 2007, 14:40
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Background image not displaying.

That's why I always use relative paths ...

Code: Select all
#cMain 
{
width: 650px;
background-image: url(/Images/cMid.gif);
background-repeat: repeat-y;
}
Reply With Quote
Reply

Tags
background image, not display

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Linked image keeps displaying a border? ricoantinoro Web Page Design 11 Dec 8th, 2006 23:27
Image gallery not displaying enlarged image AdRock PHP Forum 15 Sep 1st, 2006 11:31
Displaying an Image in php via path in MYSQL chimp PHP Forum 1 Jul 5th, 2006 09:43
Background image overlaping footer image at bottom of div lw_d Web Page Design 4 Mar 21st, 2006 00:27
Need help with my background image!!! courtjester Web Page Design 3 Sep 30th, 2003 15:25


All times are GMT. The time now is 02:36.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43