RE: Quick CF CSS question.

2006-08-21 Thread Che Vilnonis
Thanks Bobby and everyone. CfContent did the trick. :) -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Sunday, August 20, 2006 4:28 PM To: CF-Talk Subject: RE: Quick CF CSS question. I replied before all the emails came in ;-) You obviously already had

RE: Quick CF CSS question.

2006-08-20 Thread Bobby Hartsfield
To: CF-Talk Subject: Quick CF CSS question. I've got this line of code in a CSS file (default.css). background: url(../_hdrs/header1.jpg); I'd like to change it to have a random image generated using something like this background: url(../_hdrs/headercfoutput#DayOfWeek(Now

RE: Quick CF CSS question.

2006-08-20 Thread Bobby Hartsfield
is empty just to save on the overhead. Good luck ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Friday, August 18, 2006 4:09 PM To: CF-Talk Subject: Quick CF CSS question. I've got this line

Re: Quick CF CSS question.

2006-08-20 Thread Jim Wright
On 8/18/06, Paul Giesenhagen [EMAIL PROTECTED] wrote: Yes/No ... Yes if you go into your webserver and set .css files to be processed by your cold fusion server .. but that means all of your style sheets will be ran as CF templates at all times on the server. You could also use a .cfm file

Quick CF CSS question.

2006-08-18 Thread Che Vilnonis
I've got this line of code in a CSS file (default.css). background: url(../_hdrs/header1.jpg); I'd like to change it to have a random image generated using something like this background: url(../_hdrs/headercfoutput#DayOfWeek(Now())#/cfoutput.jpg); How can I do this with a CSS

Re: Quick CF CSS question.

2006-08-18 Thread Paul Giesenhagen
Shopping Cart Software - Original Message - From: Che Vilnonis [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, August 18, 2006 3:09 PM Subject: Quick CF CSS question. I've got this line of code in a CSS file (default.css). background: url(../_hdrs/header1.jpg); I'd

RE: Quick CF CSS question.

2006-08-18 Thread Ken Ferguson
Vilnonis [mailto:[EMAIL PROTECTED] Sent: Friday, August 18, 2006 3:09 PM To: CF-Talk Subject: Quick CF CSS question. I've got this line of code in a CSS file (default.css). background: url(../_hdrs/header1.jpg); I'd like to change it to have a random image generated using something like

RE: Quick CF CSS question.

2006-08-18 Thread Andy Matthews
, August 18, 2006 3:09 PM To: CF-Talk Subject: Quick CF CSS question. I've got this line of code in a CSS file (default.css). background: url(../_hdrs/header1.jpg); I'd like to change it to have a random image generated using something like this background: url(../_hdrs

RE: Quick CF CSS question.

2006-08-18 Thread Che Vilnonis
- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED] Sent: Friday, August 18, 2006 4:17 PM To: CF-Talk Subject: Re: Quick CF CSS question. Yes/No ... Yes if you go into your webserver and set .css files to be processed by your cold fusion server .. but that means all of your style sheets

Re: Quick CF CSS question.

2006-08-18 Thread Jake Churchill
try including just that css tag in the style tag within the head tag at the top of the .cfm. Then you can probably cfparam in the random image. Che Vilnonis wrote: I've got this line of code in a CSS file (default.css). background: url(../_hdrs/header1.jpg); I'd like to change it to

RE: Quick CF CSS question.

2006-08-18 Thread Andy Matthews
- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED] Sent: Friday, August 18, 2006 3:17 PM To: CF-Talk Subject: Re: Quick CF CSS question. Yes/No ... Yes if you go into your webserver and set .css files to be processed by your cold fusion server .. but that means all of your style sheets

RE: Quick CF CSS question.

2006-08-18 Thread loathe
You have to use cfcontent to have it output the image correctly. -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Friday, August 18, 2006 4:29 PM To: CF-Talk Subject: RE: Quick CF CSS question. I think I can write something like this... background

RE: Quick CF CSS question.

2006-08-18 Thread O�uz_Demirkap
domain. An idea. :) Oðuz Demirkapý -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Freitag, 18. August 2006 22:09 To: CF-Talk Subject: Quick CF CSS question. I've got this line of code in a CSS file (default.css). background: url(../_hdrs/header1.jpg

RE: Quick CF CSS question.

2006-08-18 Thread Ken Ferguson
You need to use cfcontent in your cfm file, I believe. Thanks,   Ken Ferguson 214.636.6126 -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Friday, August 18, 2006 3:29 PM To: CF-Talk Subject: RE: Quick CF CSS question. I think I can write something like

RE: Quick CF CSS question.

2006-08-18 Thread loathe
Cfheader and cfcontent. My bad. Or you could just write some JS to do it client side. -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Friday, August 18, 2006 4:29 PM To: CF-Talk Subject: RE: Quick CF CSS question. I think I can write something like