RE: SOT CSS issue

2006-08-30 Thread Sandra Clark
index.cfm?fuseaction=blog.display_entry&id=140 -Original Message- From: Victor Moore [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 30, 2006 1:44 PM To: CF-Talk Subject: Re: SOT CSS issue Thank you all, I have tried all the variations except removing the space. It works now:

Re: SOT CSS issue

2006-08-30 Thread Victor Moore
Thank you all, I have tried all the variations except removing the space. It works now: body.signform{margin:0px 0px 0px 0px; padding:0px; background: #ff; background-image: url(images/form_bkg.gif)} Thank you Ray On 8/30/06, Ray Champagne <[EMAIL PROTECTED]> wrote: > > Cinch up that space

RE: SOT CSS issue

2006-08-30 Thread Ben Nadel
Quote the background image url Ex url( "../images/blam.gif" ); Also reemember that URL are relative to the style sheet, NOT the calling page. ... Ben Nadel www.bennadel.com Certified Advanced ColdFusion Developer Need Help? www.bennadel.com/ask-ben/ -Original

RE: SOT CSS issue

2006-08-30 Thread Ian Skinner
background-image: url (images/form_bkg.gif)} IIRC these urls are relative to the CSS file, is there an images folder with that gif in it relative to the CSS file? You may need to add a root slash to your url (/images/form_bkg.gif). -- Ian Skinner Web Programmer BloodSource www.

RE: SOT CSS issue

2006-08-30 Thread Ray Champagne
Cinch up that space between url and the '(' ? > -Original Message- > From: Victor Moore [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 30, 2006 1:27 PM > To: CF-Talk > Subject: SOT CSS issue > > Hello, > > I'm trying to replace my inline style with an external style sheet. > > I

RE: SOT CSS issue

2006-08-30 Thread Coldfusion
Try: background-image: url ('images/form_bkg.gif') -Original Message- From: Victor Moore [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 30, 2006 1:27 PM To: CF-Talk Subject: SOT CSS issue Hello, I'm trying to replace my inline style with an external style sheet. I have: which dis