Re: [css-d] detecting user interaction

2011-07-01 Thread Mark Volkmann
On Thu, Jun 30, 2011 at 9:37 PM, Philippe Wittenbergh e...@l-c-n.com wrote: On Jul 1, 2011, at 10:53 AM, Mark Volkmann wrote: Are :hover and :focus the only ways that CSS can change something based on user interaction? And :active

[css-d] support for additional pseudo classes and elements in css3-ui

2011-07-01 Thread Joergen W. Lang
Dear readers, I am looking for a list of browsers that support the pseudo classes and elements that are defined in the CSS3 Basic User Interface module: http://www.w3.org/TR/css3-ui/ (E.g. :optional, :in-range, :required, etc.) Since the UI module has CR status since over 6 years one

[css-d] how to remove all background images

2011-07-01 Thread Angela French
I am trying to remove all background images in a print stylesheet. I thought that the following would work, but there is something persisting. body { background-image:none !important; background-color:white !important; background:transparent; } Any advice greatly

Re: [css-d] how to remove all background images

2011-07-01 Thread David Laakso
On 7/1/11 12:59 PM, Angela French wrote: I am trying to remove all background images in a print stylesheet. I thought that the following would work, but there is something persisting. Sorry I cannot put out a production URL to see. //Easy-peasy-lemon-squeezy: put up a simple test page

Re: [css-d] how to remove all background images

2011-07-01 Thread Germán Martínez
I guess that * { background-image: none;} Will work. Sent from my iPad On Jul 1, 2011, at 11:59 AM, Angela French afre...@sbctc.edu wrote: I am trying to remove all background images in a print stylesheet. I thought that the following would work, but there is something persisting.

[css-d] clumpy loading

2011-07-01 Thread Jo Nell Blankenship
My page loads in clumps. How can I improve the page loading to have a smoother appearance? http:www/dctexas.net/index.html __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List

Re: [css-d] clumpy loading

2011-07-01 Thread Kevin A. Cameron
Looks like there are a bunch of images are aren't being found, which would certainly slow the load. subpage1_01.jpg and the like... Kevin __ css-discuss [css-d@lists.css-discuss.org]

Re: [css-d] how to remove all background images

2011-07-01 Thread Jukka K. Korpela
Germán Martínez wrote: I guess that * { background-image: none;} Will work. Other things being equal, it will lose to any rule that uses a specific element name as selector. So it mostly won't work. The question used the !important specifier, which gives much better odds: body {

[css-d] css submenu navigation

2011-07-01 Thread Richard Lake
Hi I have a tab menu that displays a submenu on hover. This is working, please see the test page at: http://www.web-devel.co.nz/redbookagent/test.php I'd like the submenu that appears on hover to match the background of the tab that was hovered over. Examples: The active tab is white, on hover

Re: [css-d] support for additional pseudo classes and elements in css3-ui

2011-07-01 Thread Joergen W. Lang
Am 01.07.11 18:27, schrieb Joergen W. Lang: Dear readers, I am looking for a list of browsers that support the pseudo classes and elements that are defined in the CSS3 Basic User Interface module: http://www.w3.org/TR/css3-ui/ (E.g. :optional, :in-range, :required, etc.) OK - found them:

Re: [css-d] clumpy loading

2011-07-01 Thread Ghodmode
On Sat, Jul 2, 2011 at 1:30 AM, Jo Nell Blankenship jnb1...@gmail.com wrote: My page loads in clumps. How can I improve the page loading to have a smoother appearance? http:www/dctexas.net/index.html It's definitely the images. The content is loading, then the images. On subsequent loads, the

Re: [css-d] Iframe and CSS

2011-07-01 Thread Brian M. Curran
On Jul 1, 2011, at 11:37 AM, Brian M. Curran wrote: I suspect I have a position command problem with my Facebook widget, at the bottom of this page: http://www.draftingservices.com/3d-laser-scanning.html (it's top aligned, while my other two widgets are bottom aligned) Does the iframe

Re: [css-d] how to remove all background images

2011-07-01 Thread david
Jukka K. Korpela wrote: Germán Martínez wrote: I guess that * { background-image: none;} Will work. Other things being equal, it will lose to any rule that uses a specific element name as selector. So it mostly won't work. The question used the !important specifier, which gives much