Re: [css-d] Fwd: Clear Float? Help

2010-08-09 Thread Chris F.A. Johnson
On Mon, 9 Aug 2010, css man wrote: > > I started a page at: > > http://cssman.webs.com/testbuttons.html > > I cannot get the orange box to mesh up with the "Headline goes here..." > line. > > I tried using but it didn't seem to make a > difference. First, fix the HTML errors:

[css-d] Fwd: Clear Float? Help

2010-08-09 Thread css man
-- Forwarded message -- From: css man Date: Mon, Aug 9, 2010 at 4:38 PM Subject: Clear Float? Help To: l...@webdesign-l.com I started a page at: http://cssman.webs.com/testbuttons.html I cannot get the orange box to mesh up with the "Headline goes here..." line. I tried using

[css-d] sub-columns within floats

2010-08-09 Thread Peter Ankelein
Hi All, I've been racking my brains regarding column control within a float. I'm revising an event agenda that currently has two columns via a 100px left float for the session times and a 425px right float for all the session titles and associated content. The problem is now, many of the items in

Re: [css-d] CSS-only color picker

2010-08-09 Thread William Gaffga
Win Vista, Chrome 5 Basically works ... is the color supposed to show up in the menu after selection but before submittal? If so ... it doesn't. On Mon, Aug 9, 2010 at 9:51 AM, BPJ wrote: > The web is crowded with color-picker palettes using JavaScript > mumbo-jumbo. I wanted one working with cs

Re: [css-d] CSS-only color picker

2010-08-09 Thread tedd
At 6:51 PM +0200 8/9/10, BPJ wrote: >The web is crowded with color-picker palettes using JavaScript >mumbo-jumbo. I wanted one working with css only + server-side >scripting and got the idea to use a with s >and s styled with display: block and display: inline >respectively. It works in Firefox 3.

Re: [css-d] Logo positioning with CSS?

2010-08-09 Thread Duncan Hill
On Mon, 09 Aug 2010 21:19:45 +0100, Joe Jackson wrote: > Hi > > How can I have the logo sit on top of the slideshow image? At present > the > logo pushes the slideshow image further down the page? I have tried Z > index > on the logo but it still pushes the slideshow down the page instead

[css-d] Logo positioning with CSS?

2010-08-09 Thread Joe Jackson
Hi How can I have the logo sit on top of the slideshow image? At present the logo pushes the slideshow image further down the page? I have tried Z index on the logo but it still pushes the slideshow down the page instead of the logo sitting on top of the slideshow? HOME

Re: [css-d] drop shadows

2010-08-09 Thread David Laakso
Sandy wrote: > >> the site >>> needs to work for people who will be increasing text size and also >>> for those who will be using a screen reader. > >> Then set no font less than default, and ditch the Verdana and MS >> stuff: Arial, Helvetica, sans-serif will do. > >> Letter-spacing content text

Re: [css-d] drop shadows

2010-08-09 Thread Sandy
> the site >> needs to work for people who will be increasing text size and also for >> those who will be using a screen reader. > Then set no font less than default, and ditch the Verdana and MS stuff: > Arial, Helvetica, sans-serif will do. > Letter-spacing content text is not > helping th

Re: [css-d] drop shadows

2010-08-09 Thread sfeldman
hi Tim, hi Gabriele, Thanks for your help with my efforts to get some drop shadows going. I think this is the best approach http://sandyfeldman.com/dstest/dstest3.shtml though it doesn't work with everything. http://www.browsercam.com/public.aspx?proj_id=525331 I'm afraid I can't use repeated o

Re: [css-d] drop shadows

2010-08-09 Thread David Laakso
sfeld...@sympatico.ca wrote: > hey all, > > Is there a good way to get a drop shadow on text using css? I've got > something that seems to work in Safari, and in FireFox 3.6.8 on a mac, but I > think that's about it. > Others have answered your quesion. > I can't really fake this with an im

[css-d] CSS-only color picker

2010-08-09 Thread BPJ
The web is crowded with color-picker palettes using JavaScript mumbo-jumbo. I wanted one working with css only + server-side scripting and got the idea to use a with s and s styled with display: block and display: inline respectively. It works in Firefox 3.6 at least. What about other browsers? <

Re: [css-d] drop down menu help...

2010-08-09 Thread David Laakso
Michael Beaudoin wrote: > On Aug 6, 2010, at 7:34 PM, David Laakso wrote: > >> Michael Beaudoin wrote: >>> I can't get the submenus to line up under the nav menu item. Right >>> now they are down and to the right. >>> >>> http://www.ba-doyn.com/junk/ for your perusal. >>> >>> >>> Michael >>> >> >

Re: [css-d] drop down menu help...

2010-08-09 Thread Michael Beaudoin
On Aug 6, 2010, at 7:34 PM, David Laakso wrote: > Michael Beaudoin wrote: >> I am working on some css/javascript drop down menus and for the >> life of me I can't get the submenus to line up under the nav menu >> item. Right now they are down and to the right. >> >> The offending file is at

Re: [css-d] drop shadows

2010-08-09 Thread Christian Kirchhoff
Am 09.08.2010 17:46, schrieb Climis, Tim: >> Is there a good way to get a drop shadow on text using css? >> > You're using it. > > >> I've got >> something that seems to work in Safari, and in FireFox 3.6.8 on a mac, >> but I think that's about it. >> > Actually, it works in Firefo

Re: [css-d] drop shadows

2010-08-09 Thread Climis, Tim
> Is there a good way to get a drop shadow on text using css? You're using it. > I've got > something that seems to work in Safari, and in FireFox 3.6.8 on a mac, > but I think that's about it. Actually, it works in Firefox 3+, Safari 3+, Chrome 4+, and Opera 10+, on all platforms. Only IE doe

Re: [css-d] drop shadows

2010-08-09 Thread Gabriele Romanato
Hi! The CSS way is using text-shadow: h1 {text-shadow: 3px 3px 3px #ccc} Another way is using 2 wrappers: Text h1 span { position: relative; top: 3px; left: 3px; color: #ccc; } Finally, you can use image replacement and graphics: h1 { background: url(text.png) no-repeat 0

[css-d] drop shadows

2010-08-09 Thread sfeldman
hey all, Is there a good way to get a drop shadow on text using css? I've got something that seems to work in Safari, and in FireFox 3.6.8 on a mac, but I think that's about it. I can't really fake this with an image or duplicated text - the site needs to work for people who will be increasin