RE: css question

2010-03-30 Thread Sandra Clark
andy Clark -Original Message- From: Matthew Smith [mailto:chedders...@gmail.com] Sent: Tuesday, March 30, 2010 1:19 AM To: cf-community Subject: css question I have some text that is a particular class. I want to format a hrefs of that class a particular way. How do I define the links of a partic

css question

2010-03-29 Thread Matthew Smith
I have some text that is a particular class. I want to format a hrefs of that class a particular way. How do I define the links of a particular class? How do I define the a's of logo? double #'s are for inline css in cfoutput. Thanks! .logo { color: ##dd; font-weight: bold; font-size: 2

Re: quick css question

2010-03-11 Thread Matthew Smith
Thank you. I will check out the display:block stuff. On Thu, Mar 11, 2010 at 1:09 PM, Medic wrote: > > What are you applying the subtext class to? If not a block element you may > need to set display:block > > On Thu, Mar 11, 2010 at 1:28 PM, Matthew Smith >wrote: > > > > > another question:

Re: quick css question

2010-03-11 Thread Medic
What are you applying the subtext class to? If not a block element you may need to set display:block On Thu, Mar 11, 2010 at 1:28 PM, Matthew Smith wrote: > > another question: > > I can get the margin-bottom to work for h1, but not the subtext class? > > .subtext { > color: #77; > font-wei

Re: quick css question

2010-03-11 Thread Ian Skinner
What are you using the subtext class on. Inline elements don't have margins so the margin elements do nothing to them so margins only really applies to block elements. I think at least some browsers support left and right margin effects on inline elements though just to make it all more conf

Re: quick css question

2010-03-11 Thread Matthew Smith
another question: I can get the margin-bottom to work for h1, but not the subtext class? .subtext { color: #77; font-weight: bold; font-size: 50px; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; line-height: normal; margin-bottom: 500px; } h1 { font-weight: bold; font-size: 1

Re: quick css question

2010-03-10 Thread Matthew Smith
Thanks! On Wed, Mar 10, 2010 at 9:52 PM, Justin Scott wrote: > > > I am trying to do h1's with different colors. > > In that case you'd want... > > h1 { > font-weight: bold; > /* ... */ > } > h1.red { color: #f00; } > h1.green { color: #0f0; } > h1.blue { color: #00f; } > > And so on. If you

Re: quick css question

2010-03-10 Thread Matthew Smith
mith [mailto:chedders...@gmail.com] > Sent: Wednesday, March 10, 2010 10:23 PM > To: cf-community > Subject: quick css question > > > looking at a templates css, trying to figure out the double #. I know one > # > is a id. Looked at several tutorials but couldn't fi

RE: quick css question

2010-03-10 Thread Justin Scott
> I am trying to do h1's with different colors. In that case you'd want... h1 { font-weight: bold; /* ... */ } h1.red { color: #f00; } h1.green { color: #0f0; } h1.blue { color: #00f; } And so on. If you wanted those color classes to be available anywhere (and not just on H1 tags) you woul

RE: quick css question

2010-03-10 Thread LRS Scout
Was it original inline in cf? You use two pounds to escape one pound. -Original Message- From: Matthew Smith [mailto:chedders...@gmail.com] Sent: Wednesday, March 10, 2010 10:23 PM To: cf-community Subject: quick css question looking at a templates css, trying to figure out the

quick css question

2010-03-10 Thread Matthew Smith
looking at a templates css, trying to figure out the double #. I know one # is a id. Looked at several tutorials but couldn't find an answer. Example: /*header*/ ##header .menu{ height:65px} ##header .menu .fleft{ padding:11px 0 0 71px} ##header .menu .fright{ padding:31px 75px 0 0} ##header .m

Re: CSS: question.. overflow..

2009-08-22 Thread Paul Ihrig
i dont know seems like left left right works. left left left would too. On Sat, Aug 22, 2009 at 10:09 AM, Michael Grant wrote: > > Why not just float them all left? That's what I usually do. Float them all > left with proper widths inside a container div and then the div below (the > footer) you

Re: CSS: question.. overflow..

2009-08-22 Thread Michael Grant
Why not just float them all left? That's what I usually do. Float them all left with proper widths inside a container div and then the div below (the footer) you just clear:left on it and bob's your uncle. On Sat, Aug 22, 2009 at 9:48 AM, Dr. Who wrote: > > well i couldnt stop thinking about it

Re: CSS: question.. overflow..

2009-08-22 Thread Dr. Who
well i couldnt stop thinking about it.. worked on trying to fix till 11:30 last night this morning tore it all apart and started over. think i have a solution. float left left right http://www.rittal-corp.com/xxx/pi5.cfm now to comment the hell out of it, and then think about how to update the e

Re: CSS: question.. overflow..

2009-08-21 Thread Paul Ihrig
http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate looks fine. but if the main page content changes it moves... http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=Window Kit top:-255px; would need to be calculated

Re: CSS: question.. overflow..

2009-08-21 Thread Michael Grant
It seemed right when I checked the link after you posted. On Fri, Aug 21, 2009 at 2:26 PM, Dr. Who wrote: > > scratch that.. > grr.. > > ~| Want to reach the ColdFusion community with something they want? Let them know on th

Re: CSS: question.. overflow..

2009-08-21 Thread Dr. Who
scratch that.. grr.. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:302381

Re: CSS: question.. overflow..

2009-08-21 Thread Dr. Who
also this was very helpful http://www.barelyfitz.com/screencast/html-training/css/positioning/ and yes my code is ugly.. thanks for the help. ~| Want to reach the ColdFusion community with something they want? Let them know on

Re: CSS: question.. overflow..

2009-08-21 Thread Dr. Who
ok.. i "think" this does it... #rightColumn { float:right; position:relative; left:5px; top:-255px; width: 190px; height:auto; background-color: #E6F3F6; border: 2px solid #FF; } #rightColumnContent { margin: 0; te

Re: CSS: question.. overflow..

2009-08-21 Thread Dr. Who
got ride of the absolute stuff, now it is below the main section... fark.. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion

Re: CSS: question.. overflow..

2009-08-21 Thread Zaphod Beeblebrox
just realized that you have your #rightColumn absolute positioned which takes it out of the document flow. I don't think you can ever "clear" that anymore. You need to float it. On Aug 21, 2009, at 12:01 PM, Dr. Who wrote: > > ok i changed cfml comment to html so you can see ending divs >

Re: CSS: question.. overflow..

2009-08-21 Thread Dr. Who
ok i changed cfml comment to html so you can see ending divs http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate tried the clear br thing, no luck ~| Want to reach the ColdFusion com

Re: CSS: question.. overflow..

2009-08-21 Thread Michael Grant
Scratch that. Not the right place. Hang tight. I'm formatting the code to see what's going on. On Fri, Aug 21, 2009 at 12:45 PM, Michael Grant wrote: > Good God. That code is horrible, no wonder it's hard to figure out what's > going on. > > I believe if you add just before the above id="foo

Re: CSS: question.. overflow..

2009-08-21 Thread Michael Grant
That link still exhibits the behaviour he's trying to solve. On Fri, Aug 21, 2009 at 12:45 PM, Paul Ihrig wrote: > > > http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate > > ~|

Re: CSS: question.. overflow..

2009-08-21 Thread Michael Grant
Good God. That code is horrible, no wonder it's hard to figure out what's going on. I believe if you add just before the above it will solve it. It's kind of hard to tell though since your code isn't tabbed properly and it's crazy to try to sift through On Fri, Aug 21, 2009 at 12:17 PM, Dr. W

Re: CSS: question.. overflow..

2009-08-21 Thread Paul Ihrig
http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: CSS: question.. overflow..

2009-08-21 Thread Zaphod Beeblebrox
if you make your ".clearing" div 1px high, it will actually clear it. I thought I remember something about 0px divs not ever being rendered. On Aug 21, 2009, at 11:17 AM, Dr. Who wrote: > > http://www.rittal-corp.com/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate

CSS: question.. overflow..

2009-08-21 Thread Dr. Who
http://www.rittal-corp.com/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate if you collapse the nav on left side the right side sticks out the bottom.. i dodnt want to keep upping min-height: on #leftColumn which i shouldn't even use.. i swear i have fixed this a few

Re: css question

2009-08-17 Thread Ras Tafari
thanks mikey! yeah, i agree... they are tght. On Mon, Aug 17, 2009 at 8:12 AM, Michael Grant wrote: > > Looks good Tony. Nice roll overs. I've always liked that sun burst from the > photoshop shapes. I actually got a chance to use it recently too. Good > stuff. > > > ~~

Re: css question

2009-08-17 Thread Michael Grant
Looks good Tony. Nice roll overs. I've always liked that sun burst from the photoshop shapes. I actually got a chance to use it recently too. Good stuff. ~| Want to reach the ColdFusion community with something they want? Let th

Re: css question

2009-08-16 Thread denstar
I know, I know. Sucks being hip sometimes, but what-cha-gonna-do, be un-cool? NOT ON MY WATCH! I'm pulling for ya, at least. You can do it! (where's Sandra? Isn't she a master at this stuff? Paging Sandra to the CSS dept.) -- Some day in the past, he will find her. -- some 80's movie On S

Re: css question

2009-08-16 Thread Ras Tafari
oh lord. hahaha nope...im trying not to :( On Sun, Aug 16, 2009 at 10:10 PM, denstar wrote: > > Switch to a tables-based layout? ;)p > > Absolute positioning? > > Sorry bro, nada help here-o. > > -- > Science is facts; just as houses are made of stones, so is science > made of facts; but a pile o

Re: css question

2009-08-16 Thread denstar
Switch to a tables-based layout? ;)p Absolute positioning? Sorry bro, nada help here-o. -- Science is facts; just as houses are made of stones, so is science made of facts; but a pile of stones is not a house and a collection of facts is not necessarily science. Henri Poincare On Sun, Aug

Re: css question

2009-08-16 Thread Tony
ok, so i fixed that... durrr, that was dumb, anyhow :) pls help me figure out how to make that graphic @ the bottom the backgound image of the body tag, GO TO AND STAY @ the bottom. regardless of shit else :) thanks! tony On Sun, Aug 16, 2009 at 9:57 PM, Tony wrote: > peeps. > > can someone ple

css question

2009-08-16 Thread Tony
peeps. can someone please tell me why in IE the blue line exists under the menu? http://donhallmusic.com/website/ please hold all "you should do's" about other stuff, cause right now, idc about that stuff :) seriously... just help me rid the world of the blue line under the menu. thanks! tony

Re: css question: spacing between divs

2008-06-26 Thread Zaphod Beeblebrox
wart > ColdFusion Developer > 4405 Oakshyre Way > Raleigh, NC 27616 > (h) 919.874.6229 (c) 703.220.2835 > > -Original Message- > From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 26, 2008 10:49 AM > To: CF-Community > Subject: Re: css que

RE: css question: spacing between divs

2008-06-26 Thread Scott Stewart
8 10:49 AM To: CF-Community Subject: Re: css question: spacing between divs dude! That's tough to try to figure out from straight code. I'm guessing this page is behind a firewall? On Jun 26, 2008, at 9:40 AM, Scott Stewart wrote: > CF code: http://cfm.pastebin.com/m28ee

Re: css question: spacing between divs

2008-06-26 Thread Zaphod Beeblebrox
dude! That's tough to try to figure out from straight code. I'm guessing this page is behind a firewall? On Jun 26, 2008, at 9:40 AM, Scott Stewart wrote: > CF code: http://cfm.pastebin.com/m28ee5355 > > CSS Code: http://cfm.pastebin.com/d3f87989a > > > > Currently the second and third level

css question: spacing between divs

2008-06-26 Thread Scott Stewart
CF code: http://cfm.pastebin.com/m28ee5355 CSS Code: http://cfm.pastebin.com/d3f87989a Currently the second and third level divs run over each other, how would I space the divs out? Thanks sas -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC 27616 (h) 919.874.622

Re: CSS question

2008-06-06 Thread denstar
On Wed, Jun 4, 2008 at 3:16 PM, <[EMAIL PROTECTED]> wrote: > What's the common way of dealing with a div that has several images in > it that should butt up against each other horizontally. ... > If I use a css rule on the first one (font-size:0), the spaces don't > show up, but is there a better

Re: CSS question

2008-06-04 Thread denstar
On Wed, Jun 4, 2008 at 4:45 PM, <[EMAIL PROTECTED]> wrote: > what you don't realize, it that the ruby thread you have kidnapped was > trained in Japan in the ways of the ninja. While you were playing > with the laser pointer, he quietly slipped out the front door... Is that what it told you?

Re: CSS question

2008-06-04 Thread zaph0d . b33bl3br0x
what you don't realize, it that the ruby thread you have kidnapped was trained in Japan in the ways of the ninja. While you were playing with the laser pointer, he quietly slipped out the front door... Luckily I asked him nicely not to sever your head. He likes to do that kind of thing

Re: CSS question

2008-06-04 Thread Charlie Griefer
lol i'd start the negotiations, zaph :) On Wed, Jun 4, 2008 at 3:38 PM, denstar <[EMAIL PROTECTED]> wrote: > On Wed, Jun 4, 2008 at 3:16 PM, <[EMAIL PROTECTED]> wrote: > [...] >> If I use a css rule on the first one (font-size:0), the spaces don't >> show up, but is there a better work-around? >

Re: CSS question

2008-06-04 Thread denstar
On Wed, Jun 4, 2008 at 3:16 PM, <[EMAIL PROTECTED]> wrote: [...] > If I use a css rule on the first one (font-size:0), the spaces don't > show up, but is there a better work-around? Yes. Which reminds me: I have this laser pointer I've been playing with at night. Goes impressively far, ya know

CSS question

2008-06-04 Thread zaph0d . b33bl3br0x
What's the common way of dealing with a div that has several images in it that should butt up against each other horizontally. If it's done this way: this images will have a slight space in them from the carriage return. if done this way: then no spaces are ins

Re: CSS question: positioning with sidebar

2008-04-28 Thread Michael Dinowitz
Look at cflayout. I use it for my layout and it's very solid. FA has it in its Vbox/Hbox mode but you may want to use the border mode which uses JS to control the layout more. On Mon, Apr 28, 2008 at 10:30 AM, Scott Stewart <[EMAIL PROTECTED]> wrote: > Hey all, > > > > Check this out > > > > HYPE

RE: CSS question: positioning with sidebar

2008-04-28 Thread Scott Stewart
AM To: CF-Community Subject: Re: CSS question: positioning with sidebar On Mon, Apr 28, 2008 at 7:30 AM, Scott Stewart <[EMAIL PROTECTED]> wrote: > Hey all, > HYPERLINK "http://dev.avericom.com/"http://dev.avericom.com/ > > The three bottom sections, portfolio, n

Re: CSS question: positioning with sidebar

2008-04-28 Thread Charlie Griefer
On Mon, Apr 28, 2008 at 7:30 AM, Scott Stewart <[EMAIL PROTECTED]> wrote: > Hey all, > 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 turn

CSS question: positioning with sidebar

2008-04-28 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 i

RE: CSS question

2007-07-18 Thread Duane
Got it! Another CSS resource came through for me. I just needed to set the z-index in the correct class Duane -Original Message- From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 18, 2007 6:08 PM To: CF-Community Subject: Re: CSS question You're going to ne

RE: CSS question

2007-07-18 Thread Duane
The horizontal menus should appear on top of the other elements on the page. It is working properly in FFox but not IE. Duane -Original Message- From: William Bowen [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 18, 2007 5:56 PM To: CF-Community Subject: Re: CSS question what would

Re: CSS question

2007-07-18 Thread Zaphod Beeblebrox
You're going to need to set the z-index on your drop downs to be something greater than 1...I usually set mine to 100 or so. I don't know how you're going to be able to do this since it looks like you're using asp.net controls. In essence, since the side menu is generated 2nd and it's relative po

Re: CSS question

2007-07-18 Thread William Bowen
what would displaying properly look like? On 7/18/07, Duane <[EMAIL PROTECTED]> wrote: > Hi All., > > I'm pulling my hair out over a CSS problem and I need the help of a CSS guru > (I think). For some reason my menus drop down menus are not being displayed > properly on the following page in IE 6

CSS question

2007-07-18 Thread Duane
Hi All., I'm pulling my hair out over a CSS problem and I need the help of a CSS guru (I think). For some reason my menus drop down menus are not being displayed properly on the following page in IE 6 and 7. http://bmnf.sandybaynetworks.com/about.aspx Can anyone tell me why? Thanks, Duane

RE: 'nother css question

2007-05-23 Thread Sandra Clark
t: 'nother css question Heres the block in question #thsBrowseTerms ol{ list-style: none; padding: 0; margin: 1em 0.5em; float: right; font-size:11px; width: 454px; font-family: Arial, Helvetica, sans-serif; background: url(../images/ths-text-alpha.gif) no-repeat top left; }

'nother css question

2007-05-23 Thread Scott Stewart
Heres the block in question #thsBrowseTerms ol{ list-style: none; padding: 0; margin: 1em 0.5em; float: right; font-size:11px; width: 454px; font-family: Arial, Helvetica, sans-serif; background: url(../images/ths-text-alpha.gif) no-repeat top left; } #thsBrowseTerms ol li{ float:

RE: CSS question

2007-05-18 Thread Sandra Clark
ctive :link:hover, #active :visited:hover. Sandra Clark = http://www.shayna.com Training and Consulting in CSS and Accessibility Team Fusebox -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Friday, May 18, 2007 12:37 PM To: CF-Community Subject: CSS question I

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,

Re: css question

2007-04-27 Thread Paul Ihrig
i think i have seen a rotate style out there. On 4/27/07, Scott Stewart <[EMAIL PROTECTED]> wrote: > > Is there a way to set text to run at a diagonal..? > > > > I can get it to run vertically, but I want to run it at around 105 -110 > degrees > > > > -- > > Scott Stewart > > ColdFusion Developer

css question

2007-04-27 Thread Scott Stewart
Is there a way to set text to run at a diagonal..? I can get it to run vertically, but I want to run it at around 105 -110 degrees -- Scott Stewart ColdFusion Developer SSTWebworks 7241 Jillspring Ct. Springfield, Va. 22152 (703) 220-2835 http://www.sstwebworks.com ~

Re: CSS: Question: Dotted-Line Removal

2006-09-14 Thread Paul Ihrig
srew it.. i am forcing the browser to do that some bling guy may need. How do i just turn off that setting on my browser On 9/14/06, Paul Ihrig <[EMAIL PROTECTED]> wrote: > > this seems to work > onFocus="if(this.blur)this.blur()" > > > On 9/14/06, Paul Ihrig <[EMAIL PROTECTED]> wrote: > > > > al

Re: CSS: Question: Dotted-Line Removal

2006-09-14 Thread Paul Ihrig
this seems to work onFocus="if(this.blur)this.blur()" On 9/14/06, Paul Ihrig <[EMAIL PROTECTED]> wrote: > > also tried onclick="this.blur();" > > > On 9/14/06, Paul Ihrig <[EMAIL PROTECTED]> wrote: > > > > ok this is driving me batty > > have a normal nav included on several pages. > > every time

Re: CSS: Question: Dotted-Line Removal

2006-09-14 Thread Paul Ihrig
also tried onclick="this.blur();" On 9/14/06, Paul Ihrig <[EMAIL PROTECTED]> wrote: > > ok this is driving me batty > have a normal nav included on several pages. > every time you click a image link or one of our custom tags for a tab we > get that little dotted-line thing surrounding the elemnent

CSS: Question: Dotted-Line Removal

2006-09-14 Thread Paul Ihrig
ok this is driving me batty have a normal nav included on several pages. every time you click a image link or one of our custom tags for a tab we get that little dotted-line thing surrounding the elemnent i have tried: /*trying to kill focus outline*/ a:active{outline:0;} a:focus {width:0; height

Re: CSS question

2006-07-24 Thread William Bowen
> Mistype. (Multi-tasking can be a bitch, both on machine and working). > > Sorry about that caught that :-) Not a problem. Thanks! -- will "If my life weren't funny, it would just be true; and that would just be unacceptable." - Carrie Fisher ~~~

RE: CSS question

2006-07-24 Thread Sandra Clark
://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&id=1 -Original Message- From: William Bowen [mailto:[EMAIL PROTECTED] Sent: Monday, July 24, 2006 12:11 PM To: CF-Community Subject: Re: CSS question > p{font-size:11px;} > p:first-child:14px;} excellent!

Re: CSS question

2006-07-24 Thread William Bowen
> p{font-size:11px;} > p:first-child:14px;} excellent! Thank you :-) -- will "If my life weren't funny, it would just be true; and that would just be unacceptable." - Carrie Fisher ~| Introducing the Fusion Authorit

RE: CSS question

2006-07-24 Thread Sandra Clark
id=1 -Original Message- From: William Bowen [mailto:[EMAIL PROTECTED] Sent: Monday, July 24, 2006 12:03 PM To: CF-Community Subject: CSS question I'm Googling this too, but thought I'd cover all the 'ol bases. Is there a notation in CSS that I can apply so that the first tag

CSS question

2006-07-24 Thread William Bowen
I'm Googling this too, but thought I'd cover all the 'ol bases. Is there a notation in CSS that I can apply so that the first tag appearing in a page will show up as 14px text and the succeeding s would be 11px? Thanks! -- will "If my life weren't funny, it would just be true; and that would j

RE: CSS Question ???

2006-03-06 Thread Duane
t: Re: CSS Question ??? how's this for ya? Untitled In conjunction with the Rx for Survival series, MSH, JSI, and World Education collaborated to create this traveling photo exhibit in order to raise awareness about the 10 million

RE: CSS Question ???

2006-03-06 Thread Sandra Clark
Set the line-height to a numeral without pixels or any other reference line-height:2, it will set the leading to a scaling factor. Sandra Clark -Original Message- From: Duane [mailto:[EMAIL PROTECTED] Sent: Monday, March 06, 2006 3:40 PM To: CF-Community Subject: CSS Question ??? Hi

Re: CSS Question ???

2006-03-06 Thread Tony
how's this for ya? Untitled In conjunction with the Rx for Survival series, MSH, JSI, and World Education collaborated to create this traveling photo exhibit in order to raise awareness about the 10 million children 1 around the world who

Re: CSS Question ???

2006-03-06 Thread Tony
what happens if you declare a {line-height:12px;} value or something like that? tw On 3/6/06, Duane <[EMAIL PROTECTED]> wrote: > Hi All, > > Is there a way to have lines with super script in them evenly spaced with > other sentences in a paragraph? > > You can see what I mean at this link: > http

CSS Question ???

2006-03-06 Thread Duane
Hi All, Is there a way to have lines with super script in them evenly spaced with other sentences in a paragraph? You can see what I mean at this link: http://www.sandybaynetworks.com/super.cfm TIA, Duane ~| Message: http://w

Re: CSS question

2005-11-10 Thread Kevin Graeme
however what I do want is for the > browsers to implement CSS2.1 as specified and that means supporting all of > it. > > -Original Message- > From: Kevin Graeme [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 10, 2005 10:24 AM > To: CF-Community > Subject: Re: CSS qu

RE: CSS question

2005-11-10 Thread Sandy Clark
that means supporting all of it. -Original Message- From: Kevin Graeme [mailto:[EMAIL PROTECTED] Sent: Thursday, November 10, 2005 10:24 AM To: CF-Community Subject: Re: CSS question The problem in this particular instance though is that they are supporting CSS2 correctly, but since the W3

Re: CSS question

2005-11-10 Thread Kevin Graeme
The problem in this particular instance though is that they are supporting CSS2 correctly, but since the W3C didn't indicate how the element was actually supposed to work it was inevitable that one browser would work differently than others. On 11/10/05, Sandy Clark <[EMAIL PROTECTED]> wrote: >

RE: CSS question

2005-11-10 Thread Sandy Clark
ckville MD http://www.teratech.com/training/oc_classes.cfm#CS201H for more information -Original Message- From: Marlon Moyer [mailto:[EMAIL PROTECTED] Sent: Thursday, November 10, 2005 8:44 AM To: CF-Community Subject: Re: CSS question Sandy, Have you seen this blog? http://blogs.msdn.com/ie/arc

Re: CSS question

2005-11-10 Thread Kevin Graeme
It's so depressing that this was so easily predicted. On 11/10/05, Marlon Moyer <[EMAIL PROTECTED]> wrote: > Sandy, > > Have you seen this blog? > > http://blogs.msdn.com/ie/archive/2005/10/12/480242.aspx > > It looks like things are going to get messy now that IE7 isn't going > to treat the hacks

Re: CSS question

2005-11-10 Thread Marlon Moyer
m Bowen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 09, 2005 5:33 PM > To: CF-Community > Subject: Re: CSS question > > Does the trick for longer pages, but for shorter the footer overlaps and the > image in the background repeats to the bottom of the screen... > > h

RE: CSS question

2005-11-09 Thread Sandy Clark
Clark Teaching a 4 day hands on CSS Class - Tues 11/29 - Fri 12/2 in Rockville MD http://www.teratech.com/training/oc_classes.cfm#CS201H for more information -Original Message- From: William Bowen [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 09, 2005 5:33 PM To: CF-Community Subject: Re

Re: CSS question

2005-11-09 Thread William Bowen
Does the trick for longer pages, but for shorter the footer overlaps and the image in the background repeats to the bottom of the screen... http://www.users.areva-td.com/dlf/screen_ff2.jpg :-( BUT!!! by eliminating the height:100% I get this in FF: http://www.users.areva-td.com/dlf/screen_ff3.jp

Re: CSS question

2005-11-09 Thread William Bowen
hrmmm, interesting... Yes, there are several text areas, which are all floats (left) (Navigation container, photo/lang select container, page text container) each is also contained within the container. The footer, which is contained within "container" has clear:both in it. which does not seem to

Re: CSS question

2005-11-09 Thread Marlon Moyer
Not tested, but in your css use this: #container { position:absolute; left:0; /*50%*/ margin-left:0; width:780px; height:100%; min-height:480px background: transparent url(/images/areva_hp/homeleftnav_bg.gif) repeat-y; } Then in the template,

Re: CSS question

2005-11-09 Thread Kevin Graeme
Is the large text area floated? It looks like the background reoeat is cutting out in line with the bar under the picture. Is there a float that would take content out of the flow at that point? I've seen that kind of thing happen because of that. A trick is to put something after all your variabl

CSS question

2005-11-09 Thread William Bowen
the CSS in question: #container { position:absolute; left:0; /*50%*/ margin-left:0; width:780px; height:480px; background: transparent url(/images/areva_hp/homeleftnav_bg.gif) repeat-y; } Does what I want in IE: http://www.users.areva-td.com/dlf/

RE: CSS Question

2005-11-01 Thread Adkins, Randy
Thanks... Good to know that IE is always the issue we deal with. -Original Message- From: Sandy Clark [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 01, 2005 6:25 AM To: CF-Community Subject: RE: CSS Question Top, bottom and left will only work with position:absolute or

RE: CSS Question

2005-11-01 Thread Sandy Clark
PROTECTED] Sent: Tuesday, November 01, 2005 6:03 AM To: CF-Community Subject: CSS Question I know this was posted recently, but not be able to find the thread. So my apologies up front for the duplicate question. Recently, there was a post on how to have say footer text be displayed at the bottom of

CSS Question

2005-11-01 Thread Coldfusion Developer
I know this was posted recently, but not be able to find the thread. So my apologies up front for the duplicate question. Recently, there was a post on how to have say footer text be displayed at the bottom of the page without having to use the TOP:xxPX; property to determine the amount of space

Re: yet another IE CSS question

2005-10-07 Thread Deanna Schneider
You can also try this from within the stylesheet - easier than maintianing two stylesheets: /* Hides from IE5-mac and forces height for ie \*/ * html .code {width: height: 200px;} /* End hide from IE5-mac */ ~| All-in-one: antivi

Re: yet another IE CSS question

2005-10-07 Thread Raymond Camden
Marlon, that did it. Thank you very much! (And I'm sure the IE readers of my blog will appreciate it. :) On 10/7/05, Marlon Moyer <[EMAIL PROTECTED]> wrote: > I don't think that will work in the actual css file. You could always > make a 2nd css file that held values strictly for IE and then use

Re: yet another IE CSS question

2005-10-07 Thread Marlon Moyer
I don't think that will work in the actual css file. You could always make a 2nd css file that held values strictly for IE and then use something like this in your html: On 10/7/05, Raymond Camden <[EMAIL PROTECTED]> wrote: > Hmm, didn't quite work for me. I'm working in a style sheet, not ht

Re: yet another IE CSS question

2005-10-07 Thread Raymond Camden
Hmm, didn't quite work for me. I'm working in a style sheet, not html, so I had to mod it a bit. This is what I have now in my css (locally, not on the blog) ..code { font-family: courier; font-size: 11px; border: solid thin #cc; background-color: #cc;

Re: yet another IE CSS question

2005-10-07 Thread Raymond Camden
I'll try that. On 10/7/05, Marlon Moyer <[EMAIL PROTECTED]> wrote: > I've done things like this before: > > > #myDiv { > height:200px; > background-color:pink; > } > > > > > > > On 10/7/05, Raymond Camden <[EMAIL PROTECTED]> wrote: > > So, Im trying to fix an issue on my blog.

Re: yet another IE CSS question

2005-10-07 Thread Raymond Camden
My problem with that is that I don't want "fat" boxes for one line code samples. I _would_ prefer it to the situation I have now, but I'm hoping for better. On 10/7/05, Larry C. Lyons <[EMAIL PROTECTED]> wrote: > Can't you specify a height that's smaller, like 250px or 10 em, and > still allow the

Re: yet another IE CSS question

2005-10-07 Thread Marlon Moyer
I've done things like this before: #myDiv { height:200px; background-color:pink; } On 10/7/05, Raymond Camden <[EMAIL PROTECTED]> wrote: > So, Im trying to fix an issue on my blog. Check this out in IE: > > http://ray.camdenfamily.com/index.cfm/2005/10/7/ColdFusion-Contest-E

Re: yet another IE CSS question

2005-10-07 Thread Larry C. Lyons
Can't you specify a height that's smaller, like 250px or 10 em, and still allow the box to grow. larry On 10/7/05, Raymond Camden <[EMAIL PROTECTED]> wrote: > So, Im trying to fix an issue on my blog. Check this out in IE: > > http://ray.camdenfamily.com/index.cfm/2005/10/7/ColdFusion-Contest-Ent

yet another IE CSS question

2005-10-07 Thread Raymond Camden
So, Im trying to fix an issue on my blog. Check this out in IE: http://ray.camdenfamily.com/index.cfm/2005/10/7/ColdFusion-Contest-Entry-Examined--Part-3 then compare it in Firefox. Seems like IE doesnt support max-height, so I get a giant table. Now, I -can- use a height attribute, but than it m

RE: Another CSS question

2005-10-01 Thread Sandy Clark
: Thursday, September 29, 2005 3:15 PM To: CF-Community Subject: Another CSS question When viewing IE and with FireFox, there is a difference on how list items ( LI ) are displayed. Look at the following page with IE and then FF and you will see the spacing between the two elements in IE ir gr

Another CSS question

2005-09-29 Thread Adkins, Randy
When viewing IE and with FireFox, there is a difference on how list items ( LI ) are displayed. Look at the following page with IE and then FF and you will see the spacing between the two elements in IE ir greater than that of FF. http://mks.mindkeeper.net/test.cfm Anyone know a way to co

  1   2   3   >