Re: CSS Float question for anybody still on line this Friday afternoon.

2010-04-16 Thread Brian Thornton
yes... they all have to be divs http://www.yourhtmlsource.com/stylesheets/csslayout.html On Fri, Apr 16, 2010 at 6:38 PM, Ian Skinner wrote: > > Is there a way to float a couple of small pieces next to a larger piece > of floated content.  And then have the main content clear the smaller > flo

Re: CSS Float question for anybody still on line this Friday afternoon.

2010-04-16 Thread Ian Skinner
Ah I figured out one way. A simple container with overflow: auto around the small floated content got the affect I was after. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of F

RE: css question

2010-03-30 Thread Sandra Clark
You didn't say whether the class was attached to the href or if the href was within a class. Class attached to href a.logo:link{} a.logo:visited{} a.logo:hover{} a.logo:active{} href within a class logo :link{} logo :visited{} logo :hover{} logo :active{} Always go Link, Visited, Hover Active

Re: CSS Help

2009-12-02 Thread Duane
Thanks a million! Virtual marguarita on me :) - Original Message - From: "morgan l" To: "cf-community" Sent: Tuesday, December 01, 2009 6:25 PM Subject: Re: CSS Help > > Your 'Header' div is set to a height of 191px, not tall enough to contain

Re: CSS Help

2009-12-01 Thread morgan l
Your 'Header' div is set to a height of 191px, not tall enough to contain the 'welcome' div. You're probably ok removing the height designation altogether. On Tue, Dec 1, 2009 at 4:00 PM, Duane wrote: > > Hi All, > > I'm flat out stuck on a CSS issue that is over my head and I'm hoping > someon

Re: CSS Frameworks

2009-10-15 Thread Dave l
I been using the 960 one and just did a site without it and I feel lost. The names do suck but they make sense. You don't have to keep them though and you can take out what you don't use and rename them however you want. ~| Wa

Re: CSS Frameworks

2009-10-14 Thread Sandra Clark
icky. I'd rather just write structural HTML myself. On Wed, Oct 14, 2009 at 12:15 PM, Rick Root wrote: > > On Wed, Oct 14, 2009 at 12:02 PM, Zaphod Beeblebrox > wrote: > > > > > > I really don't like this at all. It seems like you're embedding you > > layout in the content again so why not j

Re: CSS Frameworks

2009-10-14 Thread Rick Root
On Wed, Oct 14, 2009 at 12:02 PM, Zaphod Beeblebrox wrote: > > > I really don't like this at all.  It seems like you're embedding you > layout in the content again so why not just use tables. Can't argue with that logic. Ric ~

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

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

Re: CSS being ignored.

2009-07-15 Thread Ian Skinner
Sandra Clark wrote: > Try taking out all the other css files and just running the one that isn't. > If that doesn't work. Remove all the rules from that css file and try > running them one at a time. > > Isolation. I'm not sure why it wouldn't work on Firefox 3.5 and would in > others, but some

RE: CSS being ignored.

2009-07-15 Thread Sandra Clark
s are very forgiving of issues, others are not. -Original Message- From: Ian Skinner [mailto:h...@ilsweb.com] Sent: Wednesday, July 15, 2009 1:01 PM To: cf-community Subject: Re: CSS being ignored. Ian Skinner wrote: > Can anybody see any reason why the first two CSS files would be l

Re: CSS being ignored.

2009-07-15 Thread Ian Skinner
Ian Skinner wrote: > Can anybody see any reason why the first two CSS files would be loaded > by the browser, but the third is just ignored? Ok, let me modify this, why is the CSS being ignored in my Firefox 3.5! I just broke down and tried a different browser, and guess what, there is the CS

Re: CSS being ignored.

2009-07-15 Thread Michael Grant
Email me the css if you'd like and I can have a boo. On Wed, Jul 15, 2009 at 12:40 PM, Ian Skinner wrote: > > Michael Grant wrote: > > can you post a fully qualified url to the file so we can look at it? > Unfortunately this is on my localhost, I don't have a public place for > it yet. > > > >

Re: CSS being ignored.

2009-07-15 Thread Ian Skinner
Michael Grant wrote: > can you post a fully qualified url to the file so we can look at it? Unfortunately this is on my localhost, I don't have a public place for it yet. ~| Want to reach the ColdFusion community with somethi

Re: CSS being ignored.

2009-07-15 Thread Ian Skinner
Sandra Clark wrote: > Check the css file itself and confirm that it validates. If it doesn't it > won't be applied. Perhaps you have either a missing or an extra { or } in > there. > > You can validate CSS using http://jigsaw.w3.org/css-validator/ Thanks for the suggestion, I had already ran the

Re: CSS being ignored.

2009-07-15 Thread Michael Grant
can you post a fully qualified url to the file so we can look at it? On Wed, Jul 15, 2009 at 12:27 PM, Ian Skinner wrote: > > Can anybody see any reason why the first two CSS files would be loaded > by the browser, but the third is just ignored? > > href="resources/styles/base_styles.css http

RE: CSS being ignored.

2009-07-15 Thread Sandra Clark
Check the css file itself and confirm that it validates. If it doesn't it won't be applied. Perhaps you have either a missing or an extra { or } in there. You can validate CSS using http://jigsaw.w3.org/css-validator/ -Original Message- From: Ian Skinner [mailto:h...@ilsweb.com] Sent

Re: CSS help on IE? Any suggestions appreciated

2009-05-13 Thread Jerry Johnson
I punted, and went with a css background image with padding. works fine, and i feel lighter using css. thanks, though, i may try these suggestions tonight. too many hours invested to not solve it, even though the project has moved on. Thanks a ton for the leads. On Wed, May 13, 2009 at 6:26 PM,

Re: CSS help on IE? Any suggestions appreciated

2009-05-13 Thread Mark Henderson
Jerry Johnson wrote: > I have been beating my head against this for a few hours. > > I have some existing code I need to style properly. I cannot (at this > time) change the html elements, just need to get them working right. > > Trying to add an icon image to the end of a string. In ff and safari

Re: CSS help on IE? Any suggestions appreciated

2009-05-13 Thread Michael Grant
you could try adding clear:none as well. On Wed, May 13, 2009 at 11:42 AM, Jerry Johnson wrote: > > I have been beating my head against this for a few hours. > > I have some existing code I need to style properly. I cannot (at this > time) change the html elements, just need to get them working

Re: css/positioning question

2009-01-20 Thread Rastafari
> -Original message- > From: Rastafari rastaf...@gmail.com > Date: Tue, 20 Jan 2009 09:00:01 -0500 > To: cf-community cf-community@houseoffusion.com > Subject: Re: css/positioning question > >> sorry, its here: >> >> http://www.brookemulford.com/index2.c

Re: css/positioning question

2009-01-20 Thread Michael Grant
ty@houseoffusion.com Subject: Re: css/positioning question > sorry, its here: > > http://www.brookemulford.com/index2.cfm > > tw > > Better than a thousand hollow words, is one word that brings peace. > -- siddhartha gautama > > > > On Tue, Jan 20, 2009 a

Re: css/positioning question

2009-01-20 Thread Rastafari
-Original message- > From: Rastafari rastaf...@gmail.com > Date: Tue, 20 Jan 2009 08:53:08 -0500 > To: cf-community cf-community@houseoffusion.com > Subject: Re: css/positioning question > >> yeah but i have another background css image, the vertical stripes... >> troubl

Re: css/positioning question

2009-01-20 Thread Michael Grant
Can you post a link? I don't see one anywhere. -Original message- From: Rastafari rastaf...@gmail.com Date: Tue, 20 Jan 2009 08:53:08 -0500 To: cf-community cf-community@houseoffusion.com Subject: Re: css/positioning question > yeah but i have another background css image, the

Re: css/positioning question

2009-01-20 Thread Rastafari
yeah but i have another background css image, the vertical stripes... trouble is, i can do ALL of what i want, in tables... hahhaah blech on css for EVERYTHING. somethings its not BEST for :) tw Better than a thousand hollow words, is one word that brings peace. -- siddhartha gautama On Tue,

Re: css/positioning question

2009-01-20 Thread Dave l
are your trying to put a image at bottom of a div or make a footer div stay below the content or at bottom of browser? If it is the later then you need the main wrapper to be: position: relative and the footer needs: position: absolute; bottom: 0; if it is just an image then you would just posit

Re: css/positioning question

2009-01-19 Thread Joel Polsky
Ops.. Here's the site: http://www.xs4all.nl/~peterned/examples/csslayout1.html On Mon, Jan 19, 2009 at 11:23 PM, Joel Polsky wrote: > That's always a pain for me.. I usually look at this site for info.. > > > On Mon, Jan 19, 2009 at 11:12 PM, Tony wrote: > >> kids. >> >> why does this footer ima

Re: css/positioning question

2009-01-19 Thread Joel Polsky
That's always a pain for me.. I usually look at this site for info.. On Mon, Jan 19, 2009 at 11:12 PM, Tony wrote: > kids. > > why does this footer image not go to the BOTTOM of the entire everything? > it puts it as ZERO, 0, but that is 0 to what my screen can see, i want > bottom of EVERYTHING

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

RE: CSS/Trademark and Copyright Symbols

2008-06-23 Thread Duane
Please ignore. As usual the minute I hit the send button I figured it out. Thanks anyway. Duane -Original Message- From: Duane [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 4:28 PM To: CF-Community Subject: CSS/Trademark and Copyright Symbols I'm working on a site that uses the

Re: CSS/Trademark and Copyright Symbols

2008-06-23 Thread Tony
/cues sandy... -- tony Better than a thousand hollow words, is one word that brings peace. -- siddhartha gautama On Mon, Jun 23, 2008 at 3:27 PM, Duane <[EMAIL PROTECTED]> wrote: > I'm working on a site that uses the TM and Copyright symbols frequently. I > need to come up with a CSS class that

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

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

RE: CSS Help

2007-11-21 Thread Duane
5:01 PM To: 'cf-community@houseoffusion.com' Subject: RE: CSS Help I am a lot closer now. Duane -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 21, 2007 4:48 PM To: CF-Community Subject: Re: CSS Help looks just fine to me. yo

RE: CSS Help

2007-11-21 Thread Duane
I am a lot closer now. Duane -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 21, 2007 4:48 PM To: CF-Community Subject: Re: CSS Help looks just fine to me. you must have fixed it

Re: CSS Help

2007-11-21 Thread Paul Ihrig
looks just fine to me. you must have fixed it. ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf Arc

RE: css floats

2007-09-20 Thread Scott Stewart
ndra Clark [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 2:37 PM To: CF-Community Subject: RE: css floats Have to wait til CFUNITED, I won't be at MAX Sandra Clark = http://www.shayna.com Training and Consulting in CSS and Accessibility Team Fusebox -O

Re: css floats

2007-09-20 Thread Charlie Griefer
ED] > Sent: Thursday, September 20, 2007 2:00 PM > To: CF-Community > Subject: Re: css floats > > i think it would be: > > position:relative; left:10px; > > sit tight tho. Sandy will be around with the right answer soon :) > > On 9/20/07, Scott Stewart <[EMAIL PR

RE: css floats

2007-09-20 Thread Sandra Clark
unity Subject: RE: css floats Thanks Sandy :) I've asked enough CSS questions here, so I probably owe you a beer or two by now :) -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (703) 220-2835 http://www.sstwebworks.com http://www.linkedin.com/in/s

RE: css floats

2007-09-20 Thread Sandra Clark
-Community Subject: Re: css floats i think it would be: position:relative; left:10px; sit tight tho. Sandy will be around with the right answer soon :) On 9/20/07, Scott Stewart <[EMAIL PROTECTED]> wrote: > Hey all, > > > > Can I add a hard px value to a float. IE: float:left

RE: css floats

2007-09-20 Thread Scott Stewart
ginal Message- From: Sandra Clark [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 2:07 PM To: CF-Community Subject: RE: css floats You would use margin for the 10px. So float:left; margin-left:10px; Would put 10px worth of margin between your float and the item to its immediate lef

RE: css floats

2007-09-20 Thread Sandra Clark
You would use margin for the 10px. So float:left; margin-left:10px; Would put 10px worth of margin between your float and the item to its immediate left. If you wanted a 10px margin all around, use margin:10px Sandra Clark = http://www.shayna.com Training and Consulting in CSS a

RE: css floats

2007-09-20 Thread Scott Stewart
iefer [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 2:00 PM To: CF-Community Subject: Re: css floats i think it would be: position:relative; left:10px; sit tight tho. Sandy will be around with the right answer soon :) On 9/20/07, Scott Stewart <[EMAIL PROTECTED]> wrote

Re: css floats

2007-09-20 Thread Charlie Griefer
i think it would be: position:relative; left:10px; sit tight tho. Sandy will be around with the right answer soon :) On 9/20/07, Scott Stewart <[EMAIL PROTECTED]> wrote: > Hey all, > > > > Can I add a hard px value to a float. IE: float:left 10PX > > > > I have a series of selections that vary

RE: css IE 6 Weirdness: Popup layer

2007-08-16 Thread Jim Davis
> -Original Message- > From: Sandra Clark [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 16, 2007 3:00 PM > To: CF-Community > Subject: RE: css IE 6 Weirdness: Popup layer > > Its an IE6 bug. Form elements always are in the front. Well - not ALL form element

Re: css IE 6 Weirdness: Popup layer

2007-08-16 Thread Tony
gh, NC. 27616 > (703) 220-2835 > > http://www.sstwebworks.com > http://www.linkedin.com/in/sstwebworks > > > -Original Message- > From: Sandra Clark [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 16, 2007 3:00 PM > To: CF-Community > Subject: RE: css IE 6 Weirdness

Re: css IE 6 Weirdness: Popup layer

2007-08-16 Thread Tony
o those things. dude, put those in their OWN DIV or SPAN when the click for the popup happens, make their display property = none. ive used that 100 times. tw On 8/16/07, Sandra Clark <[EMAIL PROTECTED]> wrote: > Its an IE6 bug. Form elements always are in the front. > > > Sandra Clark

Re: css IE 6 Weirdness: Popup layer

2007-08-16 Thread Ian Skinner
that will put it out at the 200th spot in the z-index order and make it above anything else. now, could it be less than that , sure... but i like to go with crazy high numbers JUST TO MAKE SURE :) Well if you are going for crazy high number, use something like 32000. But IIRC the problem is

Re: css IE 6 Weirdness: Popup layer

2007-08-16 Thread Tony
z-index: 200 that will put it out at the 200th spot in the z-index order and make it above anything else. now, could it be less than that , sure... but i like to go with crazy high numbers JUST TO MAKE SURE :) tw On 8/16/07, Scott Stewart <[EMAIL PROTECTED]> wrote: > Hey all, > > > > I've got a

RE: css IE 6 Weirdness: Popup layer

2007-08-16 Thread Scott Stewart
: Thursday, August 16, 2007 3:00 PM To: CF-Community Subject: RE: css IE 6 Weirdness: Popup layer Its an IE6 bug. Form elements always are in the front. Sandra Clark = http://www.shayna.com Training and Consulting in CSS and Accessibility Team Fusebox -Original Message- From

Re: css IE 6 Weirdness: Popup layer

2007-08-16 Thread William Bowen
> However, in IE 6 the popup show up behind the top two form fields... any > ideas? are the two top form fields selects? -- will "If my life weren't funny, it would just be true; and that would just be unacceptable." - Carrie Fisher ~~~

RE: css IE 6 Weirdness: Popup layer

2007-08-16 Thread Sandra Clark
Its an IE6 bug. Form elements always are in the front. Sandra Clark = http://www.shayna.com Training and Consulting in CSS and Accessibility Team Fusebox -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Thursday, August 16, 2007 2:19 PM To: CF-Commun

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

RE: CSS question

2007-05-18 Thread Sandra Clark
http://www.domedia.org/oveklykken/css-transparency.php It would have to be on a hover on something that you set up as active. #active:hover. Which of course wouldn't work on IE6, so you would have to make your link the same width and height as your li via padding. And then use #active :link:hove

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

RE: CSS Guru Needed

2007-03-29 Thread Sandra Clark
You need to set borders on the td cells to get them inside. If you want to style only certain aspects, consider changing your structure to use the or and then style those elements. Sandra Clark = http://www.shayna.com Training and Consulting in CSS and Accessibility Team Fusebox

Re: CSS Guru Needed

2007-03-29 Thread Paul Ihrig
sage- > From: Paul Ihrig [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 29, 2007 4:59 PM > To: CF-Community > Subject: Re: CSS Guru Needed > > i see borders. 1px black > > > > ~| Create robust e

RE: CSS Guru Needed

2007-03-29 Thread Scott Stewart
Me too.. IE 7 -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED] Sent: Thursday, March 29, 2007 3:59 PM To: CF-Community Subject: Re: CSS Guru Needed i see borders. 1px black ~| Upgrade to Adobe

RE: CSS Guru Needed

2007-03-29 Thread Duane
Do you see borders around the Board Member table? All I get with IE7 is borders around the outside of the table, nothing inside. Duane -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED] Sent: Thursday, March 29, 2007 4:59 PM To: CF-Community Subject: Re: CSS Guru Needed i

Re: CSS Guru Needed

2007-03-29 Thread Paul Ihrig
i see borders. 1px black ~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS Archive: http://www.houseoffusion.com/groups

RE: CSS Help

2007-02-19 Thread Coldfusion
Ihrig [mailto:[EMAIL PROTECTED] Sent: Monday, February 19, 2007 5:12 PM To: CF-Community Subject: Re: CSS Help so you need to do an if stament that if it is clicked do not switch bg color on over. only when clicked again. so you need to check if active. if active dont change bg, in not active

Re: CSS Help

2007-02-19 Thread Paul Ihrig
FF as it does in IE > > -Original Message- > From: Coldfusion [mailto:[EMAIL PROTECTED] > Sent: Monday, February 19, 2007 4:56 PM > To: CF-Community > Subject: RE: CSS Help > > In this menu there is only one submenu (selectable menu). > However, to answer the que

RE: CSS Help

2007-02-19 Thread Coldfusion
Also does not look the same in FF as it does in IE -Original Message- From: Coldfusion [mailto:[EMAIL PROTECTED] Sent: Monday, February 19, 2007 4:56 PM To: CF-Community Subject: RE: CSS Help In this menu there is only one submenu (selectable menu). However, to answer the question, as

RE: CSS Help

2007-02-19 Thread Coldfusion
e- From: Dinner [mailto:[EMAIL PROTECTED] Sent: Monday, February 19, 2007 4:42 PM To: CF-Community Subject: Re: CSS Help On 2/19/07, Coldfusion <[EMAIL PROTECTED]> wrote: . > When the menu item "Program Services" is clicked, the submenu will > display (as it is doi

RE: CSS Help

2007-02-19 Thread Coldfusion
, February 19, 2007 4:42 PM To: CF-Community Subject: Re: CSS Help On 2/19/07, Coldfusion <[EMAIL PROTECTED]> wrote: > When the menu item "Program Services" is clicked, the submenu will > display (as it is doing), along with the item Program Services will > remain a

Re: CSS Help

2007-02-19 Thread Dinner
On 2/19/07, Coldfusion <[EMAIL PROTECTED]> wrote: > When the menu item "Program Services" is clicked, the submenu will display > (as it is doing), along with > the item Program Services will remain as a bgcolor or maroon and the small How are you thinking of handling "multiple expansions"--

RE: CSS Issue

2006-12-12 Thread James Smith
So do you need me to remove the extra div tags from the html? > Sorry, it's a descendant selector > > It means all images within the div with an id of #main > > > > > ~| Create robust enterprise, web RIAs. Upg

RE: CSS Issue

2006-12-12 Thread James Smith
That is what I have done, the only HTML change I have made is the extra BR. > Keep your HTML, just add a before the class="nameplate"> The CSS changes, but not the HTML. > Ok, I may have misread you somewhere, but I have moved all of > the compn elements into "#main img" as you suggested as i

  1   2   3   4   5   >