CSS Help

2009-10-18 Thread Rick Root
Anyone want to take a gander at this? http://www.opensourcecf.com/cfopenchat/layout.html In the above layout, I only want to hard code the width and height in the outermost div (the inside of that div will be code generated) This works great in Chrome and IE.. but not Firefox... and I don't

Re: CSS Help

2009-10-18 Thread Kym Kovan
Rick Root wrote: Anyone want to take a gander at this? http://www.opensourcecf.com/cfopenchat/layout.html In the above layout, I only want to hard code the width and height in the outermost div (the inside of that div will be code generated) This works great in Chrome and IE.. but not

CSS help

2008-03-13 Thread Rick Root
Okay, I'm working on a pretty simple navigation element for this web site: http://www.bvafans.com/forums.cfm I'm using ulli/ul for the navigation, and set the li to display inline and set specific widths on the li elements. Looks great in IE. Not so much in firefox. Firefox doesn't seem to

RE: CSS help

2008-03-13 Thread Adrian Lynch
This'll no doubt help http://www.google.co.uk/search?hl=ensa=Xoi=spellresnum=0ct=resultcd=1q =taming+listsspell=1 Adrian -Original Message- From: Rick Root Sent: 13 March 2008 13:38 To: CF-Talk Subject: CSS help Okay, I'm working on a pretty simple navigation element for this web site

Re: CSS help

2008-03-13 Thread Cutter (CFRelated)
Yeah, IE and FF treat styles of the list elements completely different. You might look at zero-ing your element margins (in all browsers) prior to writing any CSS, to gain a somewhat consistent look and feel. Google Eric Meyers on this topic... Steve Cutter Blades Adobe Certified Professional

Re: CSS help

2008-03-13 Thread Rick Root
On 3/13/08, Adrian Lynch [EMAIL PROTECTED] wrote: This'll no doubt help http://www.google.co.uk/search?hl=ensa=Xoi=spellresnum=0ct=resultcd=1q =taming+listsspell=1 That's an interesting page but doesn't seem to address my issue of setting width's on inline list elements. I also found this

Re: CSS Help

2007-05-09 Thread Jim H
Yeppers. Included the file between the style tags and away we went. Thanks guys! JH ... I would expect it would need to be a cfinclude rather than a linkref. I agree. I do something similar on one of my sites. It works fine when I include the style content using a CF include inside the

CSS Help

2007-05-08 Thread Jim H
Ok, I am beating my brain on the table again. I have a css stylesheet attached to a cfm page. I call the stylesheet from the head section of the page by using: link href=css/main.cfm rel=stylesheet type=text/css media=all Yes, the css file is a cfm page because I need to have dynamic colors

RE: CSS Help

2007-05-08 Thread Jake Churchill
68154 http://www.cfwebtools.com 402-408-3733 x103 -Original Message- From: Jim H [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 08, 2007 12:32 PM To: CF-Talk Subject: CSS Help Ok, I am beating my brain on the table again. I have a css stylesheet attached to a cfm page. I call

RE: CSS Help

2007-05-08 Thread Ben Nadel
? www.bennadel.com/ask-ben/ -Original Message- From: Jim H [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 08, 2007 1:32 PM To: CF-Talk Subject: CSS Help Ok, I am beating my brain on the table again. I have a css stylesheet attached to a cfm page. I call the stylesheet from the head section

Re: CSS Help

2007-05-08 Thread Robertson-Ravo, Neil (RX)
: Jim H To: CF-Talk Sent: Tue May 08 18:31:31 2007 Subject: CSS Help Ok, I am beating my brain on the table again. I have a css stylesheet attached to a cfm page. I call the stylesheet from the head section of the page by using: link href=css/main.cfm rel=stylesheet type=text/css media=all Yes

Re: CSS Help

2007-05-08 Thread Josh Nathanson
It is not working. I am not getting any of the css or the cf variables displayed. I think you need to do cfinclude to do what you are trying to do. CF won't process the file unless you cfinclude it. And, I bet there's some restriction on using a .css extension when linking to a

RE: CSS Help

2007-05-08 Thread Robert Harrrison
I would expect it would need to be a cfinclude rather than a linkref. I agree. I do something similar on one of my sites. It works fine when I include the style content using a CF include inside the style/style tags as a page style. I tried something similar with a dynamic style sheet and

Re: CSS Help

2007-05-08 Thread Doug Bezona
I think you need to do cfinclude to do what you are trying to do. CF won't process the file unless you cfinclude it. Not true. What he's trying to do is fine. To the web server, it looks like any old http request for the file, and will hand it off to CF properly. And, I bet there's some

RE: CSS Help

2007-05-08 Thread Ian Skinner
Whap happens when you call the CSS file directly in the URL (as if you were going to it as a page)? This is a very important debugging step. Call the page directly in the browser. As a linked resource to a page, any errors in the CFML code will never be displayed, the CSS source is just

RE: CSS Help

2007-05-08 Thread Ian Skinner
I think you need to do cfinclude to do what you are trying to do. CF won't process the file unless you cfinclude it. And, I bet there's some restriction on using a .css extension when linking to a stylesheet, though I'm not sure. -- Josh Nope this works just fine. CFML can server up CSS

Re: CSS Help

2007-05-08 Thread Doug Bezona
CFML can server up CSS content just as easily as it can serve up text or HTML or many other formats. You do have to tell it that it is server up CSS with the above mentioned cfcontent... tag. It can have some caching issues since the browser will not automatically reuse a dynamic CSS

Re: CSS Help

2007-05-08 Thread Doug Bezona
On 5/8/07, Ian Skinner [EMAIL PROTECTED] wrote: Whap happens when you call the CSS file directly in the URL (as if you were going to it as a page)? This is a very important debugging step. Speaking of debugging - if you have debugging enabled, that could be causing issues. Throw a

Re: CSS Help

2007-05-08 Thread Josh Nathanson
Calling test.cfm outputs FOO with a black, one pixel border around it, in both Firefox and IE7 What happens if you put something dynamic in styletest.cfm, like ..foo {border:1px solid #mycolor#} when mycolor is defined somewhere previously? I think that's what the OP is trying to do. I

Re: CSS Help

2007-05-08 Thread Doug Bezona
On 5/8/07, Josh Nathanson [EMAIL PROTECTED] wrote: Calling test.cfm outputs FOO with a black, one pixel border around it, in both Firefox and IE7 What happens if you put something dynamic in styletest.cfm, like ..foo {border:1px solid #mycolor#} when mycolor is defined somewhere

Re: CSS Help

2007-05-08 Thread Josh Nathanson
The browser has no idea CF is involved - it just cares about the final result. The webserver doesn't care about the context of the GET request, it processes them all by the the same rules. OK, since the whole page is CF it's already getting parsed. I spaced it on that one. -- Josh

OT: CSS help?

2007-03-16 Thread Josh Nathanson
Hey all, I'm having an issue where I can't get rid of space above a div in Firefox. It's like the top margin is about 15 pixels. I tried setting margin and padding to 0px, no dice. It appears exactly as I would expect in IE, with the div right below the preceding text. Basically the code is

RE: CSS help?

2007-03-16 Thread Jones Eric R Ctr 8 AF Det 1/AFNOC
PROTECTED] -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Friday, March 16, 2007 1:54 PM To: CF-Talk Subject: OT: CSS help? Hey all, I'm having an issue where I can't get rid of space above a div in Firefox. It's like the top margin is about 15 pixels. I

Re: CSS help?

2007-03-16 Thread Josh Nathanson
Can you nest a DIV inside a P? I thought you had to use SPAN's for this. I got rid of the p tags and that seems to have cleared it up. Thanks!! Weird though that it worked as expected on IE. -- Josh ~| Create Web

RE: CSS help?

2007-03-16 Thread Jones Eric R Ctr 8 AF Det 1/AFNOC
: [EMAIL PROTECTED] -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Friday, March 16, 2007 2:03 PM To: CF-Talk Subject: Re: CSS help? Can you nest a DIV inside a P? I thought you had to use SPAN's for this. I got rid of the p tags and that seems to have cleared it up

Re: CSS help?

2007-03-16 Thread Robertson-Ravo, Neil (RX)
Nathanson To: CF-Talk Sent: Fri Mar 16 19:02:59 2007 Subject: Re: CSS help? Can you nest a DIV inside a P? I thought you had to use SPAN's for this. I got rid of the p tags and that seems to have cleared it up. Thanks!! Weird though that it worked as expected on IE. -- Josh

RE: CSS help?

2007-03-16 Thread Sandra Clark
: Friday, March 16, 2007 2:54 PM To: CF-Talk Subject: OT: CSS help? Hey all, I'm having an issue where I can't get rid of space above a div in Firefox. It's like the top margin is about 15 pixels. I tried setting margin and padding to 0px, no dice. It appears exactly as I would expect in IE

Re: CSS help?

2007-03-16 Thread Josh Nathanson
Think about that statement and then ask yourself did it really work on IE :) OK, change worked to appeared to work ;0) -- Josh ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 Flex 2 Free Trial

Re: OT: CSS help?

2007-03-16 Thread Casey Dougall
p style=margin:0px;Header text div class=myclassDiv text/div /p On 3/16/07, Josh Nathanson [EMAIL PROTECTED] wrote: Hey all, I'm having an issue where I can't get rid of space above a div in Firefox. It's like the top margin is about 15 pixels. I tried setting margin and padding to 0px, no

Re: CSS help?

2007-03-16 Thread Josh Nathanson
Remember that both Div and P are block level elements with margins. Each browser contains its own stylesheet that you overwrite. Each stylesheet is not consistent with the other. Best thing to do to make things standard across browsers is to 0 out all margins and padding first. html *

Re: OT: CSS help?

2007-03-16 Thread Josh Nathanson
p style=margin:0px;Header text div class=myclassDiv text/div /p Thanks Casey, I've decided to just ditch the p tags as they weren't necessary anyway. I'm wrapping the blocks in a div and then setting the top margin of the div to get the spacing I want. Seems to be pretty consistent across

RE: OT: CSS help?

2007-03-16 Thread Sandra Clark
-Original Message- From: Casey Dougall [mailto:[EMAIL PROTECTED] Sent: Friday, March 16, 2007 3:33 PM To: CF-Talk Subject: Re: OT: CSS help? p style=margin:0px;Header text div class=myclassDiv text/div /p On 3/16/07, Josh Nathanson [EMAIL PROTECTED] wrote: Hey all, I'm having an issue where I

Need CSS help with overlapping.

2007-02-27 Thread Will Tomlinson
How can I get the tabs to overlap the banner in IE? It's fine in FF. I know there are some vertical alignment issues but I wanted to get this part right first. I tried a few things with no luck. Here's the page: http://wtomlinson.com/cap/index.cfm The tabs were created in css tab design

RE: Need CSS help with overlapping.

2007-02-27 Thread Sandra Clark
-Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 27, 2007 12:34 PM To: CF-Talk Subject: Need CSS help with overlapping. How can I get the tabs to overlap the banner in IE? It's fine in FF. I know there are some vertical alignment issues but I wanted to get

Re: Need CSS help with overlapping.

2007-02-27 Thread Will Tomlinson
Use an ie conditional to set ie specific css. In this case for IE6, since it demonstrates the behavior you want in IE7. K, thanks sandy! Will ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 Flex

Re: Need CSS help with overlapping.

2007-02-27 Thread Will Tomlinson
One other thing I've gotten it to pull up, but will this keep it from showing behind the banner div? In IE it's behind the banner div above. Thanks, Will ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard

Re: Need CSS help with overlapping.

2007-02-27 Thread Will Tomlinson
Sandy, I think you'd be proud. What I did was setup a new div, absolute positioned it so it'd be in the right spot. Then stuck the tabs in it. Seems to look ok here in IE and FF. http://wtomlinson.com/cap/ Whatcha think? Will

RE: Need CSS help with overlapping.

2007-02-27 Thread Sandra Clark
Subject: Re: Need CSS help with overlapping. Sandy, I think you'd be proud. What I did was setup a new div, absolute positioned it so it'd be in the right spot. Then stuck the tabs in it. Seems to look ok here in IE and FF. http://wtomlinson.com/cap/ Whatcha think

CSS Help

2007-02-16 Thread [EMAIL PROTECTED]
I have a site done with CSS and I have standard includes such as header and footers with all other files being content types. Problem I am having is I need the footer file to be at the base of the content rather than a set location. The header file is fine as that content (locations) will not

RE: CSS Help

2007-02-16 Thread Steve Brownlee
://alistapart.com/articles/holygrail http://www.glish.com/css/ Steve Brownlee http://www.fusioncube.net/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, February 16, 2007 2:09 PM To: CF-Talk Subject: CSS Help I have a site done with CSS and I have standard

Re: CSS Help

2007-02-16 Thread Dan Vega
After your main content do you have a clear div? div class=clear/div ..clear { clear:both; } On 2/16/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have a site done with CSS and I have standard includes such as header and footers with all other files being content types. Problem I am

CSS Help

2007-02-14 Thread Will Tomlinson
I'm workin' with a bluerobot.com layout, tweaking it some. I've ended up breaking the layout in IE6. I stuck a logo up above the banner, and the banner moves up in line with it. If I remove the logo div, banner div drops back down in place. It all looks fine in FF.

Re: CSS Help

2007-02-14 Thread Will Tomlinson
I think I fixed it.. ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

OT: A little CSS help

2007-02-08 Thread Doug Brown
I have the below code in which I have a text field that is created via a little javascript and then a drop down. I would like these two elements to show up side by side, but cannot figure out how. Right now they are lining up one on top of another. Any help is appreciated. div

Re: A little CSS help

2007-02-08 Thread Peter Boughton
style type=text/css ..col2 {width: 50%; margin: 0px; border-width: 0px; padding: 0px;} ..left {float: left; clear: left;} ..right {float: right; clear: right;} ..break {float: none; clear: both;} /style br class=break/ div class=col2 left [content for left side goes here] /div div class=col2

more CSS help needed

2006-12-07 Thread Jake Churchill
I set up a test site to play with menus. eventually this will be my personal site, but right now I'm just playing. I have a question. There is a menu with 2 levels. Photos appears in level one, then 2 selections are in level 2. What I want is when someone selects an item from level 2 for

Re: more CSS help needed

2006-12-07 Thread Mark Flewellen
Hi Jake, I viewed the test page in Firefox 2.0 and IE7 and it looked fine, exactly what you wanted where Jonah is highlighted as well as photos. However I opened it in IE6 and there seems to be a few problems. I am sure most people don't mind posting about small css issues on this list, but

NEED CSS HELP

2006-11-17 Thread Jake Churchill
I have been frustrated with problems using CSS in IE for the last several weeks and could really use help from anyone. I have a CSS popup menu that works beautifully. However, on one of the pages there are select boxes that appear over the pop-up menu. The menu appears over the content, just

RE: NEED CSS HELP

2006-11-17 Thread Adrian Lynch
Subject: NEED CSS HELP I have been frustrated with problems using CSS in IE for the last several weeks and could really use help from anyone. I have a CSS popup menu that works beautifully. However, on one of the pages there are select boxes that appear over the pop-up menu. The menu appears over

RE: NEED CSS HELP

2006-11-17 Thread Bobby Hartsfield
You'll probably have to hide the fields when you mouseover the nav :-( ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Jake Churchill [mailto:[EMAIL PROTECTED] Sent: Friday, November 17, 2006 10:31 AM To: CF-Talk Subject: NEED CSS HELP I

RE: NEED CSS HELP

2006-11-17 Thread Terry Troxel
Try this link: http://www.alvit.de/handbook/index.php Terry -Original Message- From: Jake Churchill [mailto:[EMAIL PROTECTED] Sent: Friday, November 17, 2006 7:31 AM To: CF-Talk Subject: NEED CSS HELP I have been frustrated with problems using CSS in IE for the last several weeks

RE: NEED CSS HELP

2006-11-17 Thread Brad Wood
PROTECTED] Sent: Friday, November 17, 2006 11:05 AM To: CF-Talk Subject: RE: NEED CSS HELP You'll probably have to hide the fields when you mouseover the nav :-( ...:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com

RE: NEED CSS HELP

2006-11-17 Thread Snake
The other alternative is to use CSS generated selectlists instead of the default select tag. If you google you can find such a thing. Russ -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: 17 November 2006 16:27 To: CF-Talk Subject: RE: NEED CSS HELP It's because

RE: NEED CSS HELP

2006-11-17 Thread Bobby Hartsfield
://acoderslife.com -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Friday, November 17, 2006 1:23 PM To: CF-Talk Subject: RE: NEED CSS HELP The other alternative is to use CSS generated selectlists instead of the default select tag. If you google you can find such a thing. Russ

OT: need CSS help

2006-09-27 Thread Mark A Kruger
I have some PSD files and I need CSS templates created from them. The deliverable is the html, css files and sliced images - 2 templates.. .a home page and an internal page.It's a paying gig :) Anyone care to try their hand? It's going into farcry so it has to be denent and flexible css -

CSS help

2006-08-16 Thread Rick Root
I'm having some trouble with CSS. I'd like to right align a 400px box to the right side of my page, and I want to LEFT align the text in the page. I've got it working in IE, but not Firefox. Here's the URL: https://www.cfr.duke.edu/new.cfm?showNewTemplate=1 The specific CSS:

RE: CSS help

2006-08-16 Thread Jake Churchill
10:03 AM To: CF-Talk Subject: CSS help I'm having some trouble with CSS. I'd like to right align a 400px box to the right side of my page, and I want to LEFT align the text in the page. I've got it working in IE, but not Firefox. Here's the URL: https://www.cfr.duke.edu/new.cfm

RE: CSS help

2006-08-16 Thread Sandra Clark
-Talk Subject: CSS help I'm having some trouble with CSS. I'd like to right align a 400px box to the right side of my page, and I want to LEFT align the text in the page. I've got it working in IE, but not Firefox. Here's the URL: https://www.cfr.duke.edu/new.cfm?showNewTemplate=1 The specific

Re: CSS help

2006-08-16 Thread Mingo Hagen
div style=width:400px; float:right; text-align:left; Like this? /div Mingo. Rick Root wrote: I'm having some trouble with CSS. I'd like to right align a 400px box to the right side of my page, and I want to LEFT align the text in the page. I've got it working in IE, but not Firefox.

RE: CSS help

2006-08-16 Thread Ben Nadel
the gangster of love. -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 16, 2006 11:03 AM To: CF-Talk Subject: CSS help I'm having some trouble with CSS. I'd like to right align a 400px box to the right side of my page, and I want to LEFT align the text

RE: CSS help

2006-08-16 Thread Andy Matthews
--//- -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 16, 2006 10:03 AM To: CF-Talk Subject: CSS help I'm having some trouble with CSS. I'd like to right align a 400px box to the right side of my page, and I want to LEFT align the text

Re: CSS help

2006-08-16 Thread Mingo Hagen
Jake Churchill wrote: I played with this a bit and it makes no sense. You can fix it by just using a table. Not as pretty but it gets the job done. pff a table ;) so 1996... Mingo. ~| Introducing the Fusion Authority

RE: CSS help

2006-08-16 Thread Ben Nadel
x 14 212.691.3477 fax www.nylontechnology.com Some people call me the space cowboy. Some people call me the gangster of love. -Original Message- From: Sandra Clark [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 16, 2006 11:23 AM To: CF-Talk Subject: RE: CSS help #headerWrapper

Re: CSS help

2006-08-16 Thread Rick Root
Jake Churchill wrote: I played with this a bit and it makes no sense. You can fix it by just using a table. Not as pretty but it gets the job done. I know I can fix it by using a table, but I don't want to use a table ;) I will if I can't come up with an alternative solution though. Rick

Re: CSS help

2006-08-16 Thread Rick Root
Sandra Clark wrote: Float the wrapper to the right. Text-align only works on the inline text within the div, not on the div itself. I seriously need to buy you a drink at the next conference! You're always coming to my CSS rescue. that worked, except that the remaining content floated

Re: CSS help

2006-08-16 Thread James Holmes
While the br does work, it's a bit of a fudge. I came across an article with a better solution when looking at the same problem; try adding clear: both; overflow: hidden; to the css for the box and you can remove the br after it. On 8/17/06, Rick Root [EMAIL PROTECTED] wrote: Sandra Clark

OT: CSS Help

2005-08-16 Thread Rick Root
Can someone explain to me why the following template has spaces on either side of the blue bar in the top middle section? I'm converting an existing table-driven layout to CSS and it looks decent in Firefox but the white spaces exist in IE. http://www.it.dev.duke.edu/template.html Rick

RE: CSS Help

2005-08-16 Thread Sandy Clark
. (pixels and %). You won't get what you want. -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 16, 2005 9:58 AM To: CF-Talk Subject: OT: CSS Help Can someone explain to me why the following template has spaces on either side of the blue bar in the top

Re: CSS Help

2005-08-16 Thread Rick Root
Sandy Clark wrote: You need a doctype in there, otherwise IE is going to go into quirks mode Try HTML 4.01 strict, that should be a start. Wow, that breaks everything! =) How about 4.01 Transitional? As to the rest, maincontent has a width of 100%. The question is 100% of what? Children

RE: CSS Help

2005-08-16 Thread Sandy Clark
:04 AM To: CF-Talk Subject: Re: CSS Help Sandy Clark wrote: You need a doctype in there, otherwise IE is going to go into quirks mode Try HTML 4.01 strict, that should be a start. Wow, that breaks everything! =) How about 4.01 Transitional? As to the rest, maincontent has a width of 100

Re: CSS Help

2005-08-16 Thread Rick Root
Well, I switched it to Strict and even went through and validated my CSS using the w3c CSS validation service (http://jigsaw.w3.org/css-validator/), and it's fine. No errors, no warnings. And I've still got unwanted white space left and right on the blue bar in the midddle when viewed in IE.

RE: CSS Help

2005-08-16 Thread Sandy Clark
Yes, but you designed it in quirks mode. Best bet is to start commenting out css and playing with it one bit at a time until you find the culprit. -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 16, 2005 1:21 PM To: CF-Talk Subject: Re: CSS Help Well

Re: CSS Help

2005-08-16 Thread Rick Root
Sandy Clark wrote: Yes, but you designed it in quirks mode. Best bet is to start commenting out css and playing with it one bit at a time until you find the culprit. I didn't design it in any mode other than text mode =) Okay, I removed all the unrelated crap and have this:

RE: CSS Help

2005-08-16 Thread Tangorre, Michael
From: Rick Root [mailto:[EMAIL PROTECTED] where is that space coming from? Try something out... Make this your first style declaration. Then refresh. *{ padding: 0px; margin: 0px; } Looks like a padding issue... ~|

Re: CSS Help

2005-08-16 Thread Rick Root
Nope, doesn't work. I'll stop posting on this thread here... I'm trying to subscribe to a css discussion list =) Rick Tangorre, Michael wrote: From: Rick Root [mailto:[EMAIL PROTECTED] where is that space coming from? Try something out... Make this your first style declaration. Then

RE: CSS Help

2005-08-16 Thread Andy
Unless someone complains, keep it up. It helps those of us who might be considering CSS or have some problems that we've just given up on. Andy -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 16, 2005 1:55 PM To: CF-Talk Subject: Re: CSS Help Nope

OT: Current JS CSS help files for CF Studio 5?

2003-03-28 Thread Pete Ruckelshaus
Hi, I was wondering if there were any current JavaScript (to 1.3 at least) and Cascading Style Sheet (to 1.0/XHTML at least, 2.0 would be even better) help files that will work with Cold Fusion Studio 5? I found some online but they were dated 1998 and I think by now I have most of that stuff

Re: OT: Current JS CSS help files for CF Studio 5?

2003-03-28 Thread Randell B Adkins
TopStyle works with CF5 for CSS. Not sure about JS [EMAIL PROTECTED] 03/28/03 08:39AM Hi, I was wondering if there were any current JavaScript (to 1.3 at least) and Cascading Style Sheet (to 1.0/XHTML at least, 2.0 would be even better) help files that will work with Cold Fusion Studio 5? I

Re: Current JS CSS help files for CF Studio 5?

2003-03-28 Thread Gary Groomer
to the files just like any other help file within Studio. Gary Groomer - Original Message - From: Pete Ruckelshaus [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 28, 2003 5:39 AM Subject: OT: Current JS CSS help files for CF Studio 5? Hi, I was wondering

RE: Slightly OT: CSS Help Needed!

2001-01-17 Thread Michael Thomas
-0500 From: "Benjamin S. Rogers" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Slightly OT: CSS Help Needed! Message-ID: [EMAIL PROTECTED] I'm trying to design drop-down menus using CSS. If I knew exactly where the menus were to appear, it would be easy using absolute p

RE: Slightly OT: CSS Help Needed!

2001-01-17 Thread Michael Thomas
Error handling within Cold Fusion uses lil' to no I/O overhead, this includes CFTRY/CATCH blocks. If your more interested on this other things in CF error handling, everything you ever wanted to know is right here: http://www.snazzydev.com/cf/tut/error_system/ Sincerely, Mike Lakes [EMAIL

RE: Slightly OT: CSS Help Needed!

2001-01-16 Thread DeVoil, Nick
lto:[EMAIL PROTECTED]] Sent: Tuesday, January 16, 2001 5:43 AM To: CF-Talk Subject: Slightly OT: CSS Help Needed! I'm trying to design drop-down menus using CSS. If I knew exactly where the menus were to appear, it would be easy using absolute positioning and the visibility property. Unf

RE: Slightly OT: CSS Help Needed!

2001-01-16 Thread Benjamin S. Rogers
I'm trying to design drop-down menus using CSS. If I knew exactly where the menus were to appear, it would be easy using absolute positioning and the visibility property. There are a lot of really good canned scripts out there. One of those will probably do everything your looking to do.

Slightly OT: CSS Help Needed!

2001-01-15 Thread wnelto
I'm trying to design drop-down menus using CSS. If I knew exactly where the menus were to appear, it would be easy using absolute positioning and the visibility property. Unfortunately, the menus must be placed relative to a table. The table is centered on the page, and it's width isn't