Re: CSS Question

2008-09-17 Thread Scott Stewart
Updates: I used a style attribute in the option tag (background-image:(url=images/imagename)) it works in FF3 but does absolutely nothing in IE7 I really really wish that someone would come up with a standard that will work in every browser. Scott Stewart wrote: cfoutput query=getHexID

RE: CSS Question

2008-09-17 Thread Dave Francis
Or a browser that adheres to the standard? -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2008 9:44 AM To: CF-Talk Subject: Re: CSS Question Updates: I used a style attribute in the option tag (background-image:(url=images/imagename

Re: CSS Question

2008-09-17 Thread Scott Stewart
as long as M$ is in the game that will *never* happen Dave Francis wrote: Or a browser that adheres to the standard? -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2008 9:44 AM To: CF-Talk Subject: Re: CSS Question Updates: I

Re: CSS Question

2008-09-17 Thread Claude Schneegans
I really really wish that someone would come up with a standard that will work in every browser. In my experience: 1. option tag cannot include any HTML child; 2. option style only support color, no background, no bold, italic or so.

Re: CSS Question

2008-09-17 Thread Claude Schneegans
Or a browser that adheres to the standard? C'mon, we are in a developer forum here, any developer should be concern by the way their application behaves on the client side, and like it or not, about 80% of client use Explorer.

RE: CSS Question

2008-09-17 Thread Andy Matthews
Stewart [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2008 8:57 AM To: CF-Talk Subject: Re: CSS Question as long as M$ is in the game that will *never* happen Dave Francis wrote: Or a browser that adheres to the standard? -Original Message- From: Scott Stewart [mailto:[EMAIL

Re: CSS Question

2008-09-17 Thread Scott Stewart
and for public sites you're absolutely right. But the application is for a College, the requirements state that it has to work in both...I'm just glad they didn't include Safari and IE7 for the Mac. Claude Schneegans wrote: Or a browser that adheres to the standard? C'mon, we are in a

Re: CSS Question

2008-09-17 Thread Scott Stewart
they do is wrong. -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2008 8:57 AM To: CF-Talk Subject: Re: CSS Question as long as M$ is in the game that will *never* happen Dave Francis wrote: Or a browser that adheres

RE: CSS Question

2008-09-17 Thread Andy Matthews
PROTECTED] Sent: Wednesday, September 17, 2008 9:44 AM To: CF-Talk Subject: Re: CSS Question I don't blindly hate them, and I'm pretty sure that it's valid CSS. I want a common set of selectors that will work predictably (and in the same way) in every browser, that will cover 98% of what you'd

CSS Question

2008-09-16 Thread Scott Stewart
cfoutput query=getHexID option value=#hex_id# cfif hex_id eq get_category.hex_idselectedcfelse/cfif span style=background-color:#hex_id#; border:medium; width:10px; height:10px;nbsp;/span#hex_id# /option /cfoutput any reason why the span tag shouldn't produce a small box colored with the

RE: CSS Question

2008-09-16 Thread Andy Matthews
] Sent: Tuesday, September 16, 2008 11:07 AM To: CF-Talk Subject: CSS Question cfoutput query=getHexID option value=#hex_id# cfif hex_id eq get_category.hex_idselectedcfelse/cfif span style=background-color:#hex_id#; border:medium; width:10px; height:10px;nbsp;/span#hex_id# /option /cfoutput any

RE: CSS Question

2008-09-16 Thread Weidler, Wilfred C.
Put the style attribute in the option tag and get rid of the span. Chuck -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2008 12:07 PM To: CF-Talk Subject: CSS Question cfoutput query=getHexID option value=#hex_id# cfif hex_id eq

Re: CSS Question

2008-09-16 Thread Scott Stewart
Weidler, Wilfred C. wrote: Put the style attribute in the option tag and get rid of the span. Chuck -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2008 12:07 PM To: CF-Talk Subject: CSS Question cfoutput

Re: CSS Question

2008-09-16 Thread s. isaac dealey
If you can live without support for IE6, you can set the display for the span to inline-block which (as best I can tell) makes it behave the way an image behaves with regard to its surface area. That will let you give it a width without needing to float it left or the like. -- s. isaac dealey

RE: CSS Question

2008-09-16 Thread Andy Matthews
I don't believe that option tags can contain children. -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2008 11:30 AM To: CF-Talk Subject: Re: CSS Question this colors the entire option tag here's the rendered html with a div in place

Re: CSS Question

2008-09-16 Thread s. isaac dealey
cfoutput query=getHexID option value=#hex_id# cfif hex_id eq get_category.hex_idselectedcfelse/cfif span style=background-color:#hex_id#; border:medium; width:10px; height:10px;nbsp;/span#hex_id# /option /cfoutput any reason why the span tag shouldn't produce a small box colored

RE: CSS Question

2008-09-16 Thread Weidler, Wilfred C.
Ok, I get what you are trying to do now. You want a colored box beside the hex value in the option tag. Correct? Chuck -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2008 12:30 PM To: CF-Talk Subject: Re: CSS Question this colors

Re: CSS Question

2008-09-16 Thread Scott Stewart
-Talk Subject: Re: CSS Question this colors the entire option tag here's the rendered html with a div in place, still no love select name=hex_id id=hex_id option value=#CC selecteddiv style=display: block; background-color:#CC; border:medium; border-color:#00; width:10px

RE: CSS Question

2008-09-16 Thread Sandra Clark
16, 2008 12:30 PM To: CF-Talk Subject: Re: CSS Question this colors the entire option tag here's the rendered html with a div in place, still no love select name=hex_id id=hex_id option value=#CC selecteddiv style=display: block; background-color:#CC; border:medium; border-color

Re: CSS Question

2008-09-16 Thread Scott Stewart
and Accessibility Team Fusebox -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2008 12:30 PM To: CF-Talk Subject: Re: CSS Question this colors the entire option tag here's the rendered html with a div in place, still no love

RE: CSS Question

2008-09-16 Thread Dave Francis
style=background-color:redRed/option /select /form -Original Message- From: Sandra Clark [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2008 12:40 PM To: CF-Talk Subject: RE: CSS Question You can't color individual option tags. You can however color optgroup tags Sandra Clark

RE: CSS Question

2008-09-16 Thread Sandra Clark
:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2008 12:53 PM To: CF-Talk Subject: RE: CSS Question Hi Sandra, First off, let me say that I absolutely accept you as the authority on CSS, at least on this list. But... This seems to work (in the drop-downs if no size specified), even

Re: CSS Question

2008-09-16 Thread Scott Stewart
://www.shayna.com Training and Consulting in CSS and Accessibility Team Fusebox -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2008 12:30 PM To: CF-Talk Subject: Re: CSS Question this colors the entire option tag here's

Re: CSS Question

2008-09-16 Thread Scott Stewart
Training and Consulting in CSS and Accessibility Team Fusebox -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2008 12:30 PM To: CF-Talk Subject: Re: CSS Question this colors the entire option tag here's the rendered html with a div

CSS Question: Browser Sidebars

2008-04-30 Thread Scott Stewart
Hey all, Check this out HYPERLINK http://dev.avericom.com/http://dev.avericom.com The three bottom sections, portfolio, news and blogs. Position perfectly with a side bar turned on in your browser. With the sidebar turned off, the text shifts to the left. I know this is a CSS issue, but I

Re: CSS Question: Browser Sidebars

2008-04-30 Thread Joel Watson
Scott-- The problem is that you are absolutely positioning those three divs (they aren't rendering correctly in Firefox 2.5 or IE 7, btw). Take off the absolute positioning, as well as left and top for each. Then, float each left and use margins to space them out. This will stop them from

RE: CSS Question: Browser Sidebars

2008-04-30 Thread Scott Stewart
-Talk Subject: Re: CSS Question: Browser Sidebars Scott-- The problem is that you are absolutely positioning those three divs (they aren't rendering correctly in Firefox 2.5 or IE 7, btw). Take off the absolute positioning, as well as left and top for each. Then, float each left and use margins

Re: CSS Question: Browser Sidebars

2008-04-30 Thread Joel Watson
Glad to help! Joel Thanks Joel, Your idea worked :) sas -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) Scott-- The problem is that you are absolutely positioning those three divs (they aren't rendering

CSS Question

2008-04-14 Thread Andy
What am I doing wrong? When the following is viewd on FireFox, the 1st and 3rd row show correctly, but on IE 6, the middle row shows right. Any suggestions? !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0//EN html head meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 STYLE

CSS Question

2008-04-06 Thread Andy
What am I doing wrong? When the following is viewd on FireFox, the 1st and 3rd row show correctly, but on IE 6, the middle row shows right. Any suggestions? !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0//EN html head meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 STYLE

Re: OT: CSS Question

2008-02-20 Thread Matt Quackenbush
Yes. link href=styles.css type=text/css rel=stylesheet media=*all* / link href=print.css type=text/css rel=stylesheet media=*print* / ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get

Re: OT: CSS Question

2008-02-20 Thread Matt Quackenbush
Heh. The asterisks were placed in by Gmail's editor, to signify bold. I was merely attempting to highlight the key words. After I sent my reply, I found that other people had already answered the question. For some reason the thread didn't stay together in my Gmail account, so I thought I was

RE: OT: CSS Question

2008-02-20 Thread Rick Faircloth
, February 20, 2008 1:12 PM To: CF-Talk Subject: Re: OT: CSS Question Yes. link href=styles.css type=text/css rel=stylesheet media=*all* / link href=print.css type=text/css rel=stylesheet media=*print* / ~| Adobe

OT: CSS Question

2008-02-19 Thread Andy
I understand how to make fields invisible, but is there a way to have a field display on the screen, but become invisible when printed? For example, can I set one stylesheet for Display and another for printing? Andy ~|

RE: CSS Question

2008-02-19 Thread Jake Churchill
/media.html _ Jake Churchill Team Leader 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 -Original Message- From: Andy [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 19, 2008 5:34 PM To: CF-Talk Subject: OT: CSS Question I understand how

RE: CSS Question

2008-02-19 Thread Andy
Very cool. Thanks! -Original Message- From: Jake Churchill [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 19, 2008 5:39 PM To: CF-Talk Subject: RE: CSS Question media=print in your link tag where you import the stylesheet will accomplish this. media=screen will be screen

RE: CSS Question

2008-02-19 Thread Andy
: Jake Churchill [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 19, 2008 5:39 PM To: CF-Talk Subject: RE: CSS Question media=print in your link tag where you import the stylesheet will accomplish this. media=screen will be screen specific and media=all is for both. A lack of this attribute

RE: CSS Question

2008-02-19 Thread Andy
PROTECTED] Sent: Tuesday, February 19, 2008 10:16 PM To: 'cf-talk@houseoffusion.com' Subject: RE: CSS Question Jake, Ok, I've been playing around for the last 2 hours and can't get it to work. For example, in the following header both displays on the screen and prints. What am I doing wrong

Re: CSS Question

2008-02-19 Thread Azadi Saryev
use cfdocument to create a pdf to your size and specs. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Andy wrote: OK. Not sure what happened. But now it is working in IE and FireFox, although FireFox displays the data differently. More playing I guess. Is there a way I can set

Re: OT: CSS Question

2007-06-12 Thread Mark Henderson
Rick Faircloth wrote: Hi, all... I'm wondering if anyone knows why and what to do about aligning a div background image to the right top corner of a div. IE 7 and FF display it as expected...IE 6 just leaves it in the *left* upper corner. Here's the code: div class=section

Re: OT: CSS Question

2007-06-12 Thread Andrew Scott
I will have to agree, works here too. but one thing I have also noticed is that in some case of heritance of styles, the image class needs to have margin-left: auto; and margin-right: auto; I have also found that in fireDebug, if you start to disable inherit css elements you can quickly identify

RE: OT: CSS Question

2007-06-12 Thread Rick Faircloth
Hi, Andrew... check out my response to Mark Mik for the explanation I came upon for the problem. Let me know if you don't see it. Rick -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 12, 2007 5:29 AM To: CF-Talk Subject: Re: OT: CSS Question I

RE: OT: CSS Question

2007-06-12 Thread Rick Faircloth
Henderson [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 12, 2007 4:53 AM To: CF-Talk Subject: Re: OT: CSS Question Rick Faircloth wrote: Hi, all... I'm wondering if anyone knows why and what to do about aligning a div background image to the right top corner of a div. IE 7 and FF display

RE: OT: CSS Question

2007-06-12 Thread Rick Faircloth
- From: Mark Henderson [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 12, 2007 4:53 AM To: CF-Talk Subject: Re: OT: CSS Question Rick Faircloth wrote: Hi, all... I'm wondering if anyone knows why and what to do about aligning a div background image to the right top corner of a div. IE 7

RE: OT: CSS Question

2007-06-12 Thread Rick Faircloth
everything to stack up. Thoughts, Thanks, Rick -Original Message- From: Mark Henderson [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 12, 2007 4:53 AM To: CF-Talk Subject: Re: OT: CSS Question Rick Faircloth wrote: Hi, all... I'm wondering if anyone knows why and what to do about aligning

OT: CSS Question

2007-06-11 Thread Rick Faircloth
Hi, all... I hope everyone doesn't mind an OT question, but I can't find an answer anywhere and the css list I'm on isn't responding. Here's my post to the other list. I'd appreciate any clues anyone might have. Thanks, Rick

Re: OT: CSS Question

2007-06-11 Thread Mik Muller
How about: { background-image: url('images/dove-section-bg.png'); background-repeat: no-repeat; background-position: 100% 0px; } Mik IE 7 and FF display it as expected...IE 6 just leaves it in the *left* upper corner. Here's the code: div class=section

SOT: css question

2007-05-18 Thread Scott Stewart
I have a weird CSS question. I'm using Aptana CSS editor,... I have an alphabet list (literally ABCD..etc) There's a CSS background with the same set (trying to achieve a certain font) I need to create a highlight when the user select's a letter, Can I put a semi-transparent

RE: css question

2007-05-18 Thread Bobby Hartsfield
Is a background color not good enough? #bwAlphabet a:hover{ background: #000; } -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Friday, May 18, 2007 12:03 PM To: CF-Talk Subject: SOT: css question I have a weird CSS question. I'm using Aptana CSS editor

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

RE: CSS Question

2005-05-17 Thread John Stanley
Massimo, thanks alot. that works great. -Original Message- From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED] Sent: Monday, May 16, 2005 8:12 AM To: CF-Talk Subject: Re: CSS Question Does anyone know the style command to half-space characters in a word, so

OT: CSS Question

2005-05-16 Thread John Stanley
Does anyone know the style command to half-space characters in a word, so that the they appear more spread out than normal, but not as far as the regular space between words? TIA ~| Discover CFTicket - The leading ColdFusion

Re: CSS Question

2005-05-16 Thread Massimo, Tiziana e Federica
Does anyone know the style command to half-space characters in a word, so that the they appear more spread out than normal, but not as far as the regular space between words? I guess you are looking for this: letter-spacing: 2px; Massimo Foti Dreamweaver:

RE: CSS Question... is this possible?

2004-03-10 Thread Ian Skinner
Yes, it is possible. Take a look at our Commonly Asked Questions page at http://www.bloodsource.org/HowYouCanHelp/DonateBlood/Commonly_asked_question.cfm.I think this is similar to what you are trying to do.If you click on the various questions in the left column, the content of the center

OT: CSS Question... is this possible?

2004-03-09 Thread Jon Block
I have a situation where I have a content display page that is quite long. I want to split up the content into multiple pages. In other words, rather than having a really really long page, I'd like to break it up and use next/previous buttons for navigation. Let's pretend that the following table

RE: CSS Question... is this possible?

2004-03-09 Thread Sandy Clark
Don't use the tables at all. If you simply use the div/div's to enclose it, it should be okay. the situation is that a table won't automatically refresh itself (especially IE). _ From: Jon Block [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 09, 2004 3:42 PM To: CF-Talk Subject: OT: CSS

RE: OT: CSS Question... is this possible?

2004-03-09 Thread Suyer, Ed
It strikes me that if you remove the table/table, you eliminate the problem, no? If you must use tables, try something like this (syntax may not be exact) : !--- use a spacer image as a placeholder for the maximum amount of space to be occupied by the text i.e. 800 pixles high --- table

Re: [OT] CSS Question

2003-02-26 Thread Bob Haroche
Anyone know how to get rid of that inner border line that appears on a submit button when it is active?? onClick=blur() If you use Dreamweaver, www.projectseven.com has an extension to add/remove that code to all links on a page. I've noticed that IE6 (pc) won't always get rid of the border

Re: [OT] CSS Question

2003-02-24 Thread Jochem van Dieten
Taco Fleur wrote: Anyone know how to get rid of that inner border line that appears on a submit button when it is active?? Or even change the color? onClick=blur() Jochem ~| Archives:

[OT] CSS Question

2003-02-23 Thread Taco Fleur
Anyone know how to get rid of that inner border line that appears on a submit button when it is active?? Or even change the color? Or is this a stupid question? ;-) ~| Archives:

CSS Question

2003-02-01 Thread Duane Boudreau
Hi All, I'm looking for a style sheet that will let me put a border around just one row in a table. Has anyone here done this before? If so how? TIA, Duane ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

RE: CSS Question

2003-02-01 Thread Russ
Try applying a style that you define to do that to just the TR tag. -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 01, 2003 3:35 PM To: CF-Talk Subject: CSS Question Hi All, I'm looking for a style sheet that will let me put

Re: CSS Question

2003-02-01 Thread Gyrus
- Original Message - From: Duane Boudreau [EMAIL PROTECTED] I'm looking for a style sheet that will let me put a border around just one row in a table. Has anyone here done this before? If so how? Try: tr.border {border: 1px solid Black;} with this HTML: tr class=bordertdTable

Re: CSS Question

2003-02-01 Thread Charlie Griefer
- Original Message - From: Russ [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, February 01, 2003 2:48 PM Subject: RE: CSS Question Try applying a style that you define to do that to just the TR tag. Actually, i don't believe the tr will accept a border attribute (i've

Re: CSS Question

2003-02-01 Thread Jason Miller
define to do that to just the TR tag. -Original Message- From: Duane Boudreau [ mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ] Sent: Saturday, February 01, 2003 3:35 PM To: CF-Talk Subject: CSS Question Hi All, I'm looking for a style sheet that will let me put

RE: CSS Question

2003-02-01 Thread Russ
It will accept a border; there tends to be an issue with it working in NS4, however. HTH, Russ -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 01, 2003 3:53 PM To: CF-Talk Subject: Re: CSS Question - Original Message

Re: CSS Question

2003-02-01 Thread Dave Lyons
] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, February 01, 2003 4:34 PM Subject: CSS Question Hi All, I'm looking for a style sheet that will let me put a border around just one row in a table. Has anyone here done this before? If so how? TIA, Duane

RE: CSS Question

2003-02-01 Thread Duane Boudreau
: Re: CSS Question if you apply a style sheet and redefin the tr tag it will adjust all tr tags. you can do a tr style=border: thin #CC it's the property : decoration color - You can also add more attributes by seperating them with a ; hope this helps jay miller Russ wrote: Try applying

Re: CSS Question

2003-02-01 Thread Dave Lyons
01, 2003 5:15 PM Subject: RE: CSS Question I'm trying to do this via javascript but no go, any suggestions? tr onMouseOver=this.style.border='1px solid black'; onMouseOut=this.style.border='0px'; Duane -Original Message- From: Jason Miller [mailto:[EMAIL PROTECTED]] Sent

RE: JS/CSS question

2000-12-29 Thread Stolpner, Richard J
ame" onClick="changeClass('FirstName','0');"SomeValue/span/td tdinput type="radio" name="FirstName" value="SomeOtherValue" checked onClick="changeClass('FirstName','1');"/td tdspan class="Text" id="r2FirstName" onClick="

OT: JS/CSS question

2000-12-28 Thread stas
Hello, How can I swap a style on an a mousover even? I know I can do this: td onMouseOver = "this.style.color = 'black'" but I'd like to just change to a different style class definition instead of explicitaly listing ever property. Thanks! ~ Paid Sponsorship ~ Get