Re: [css-d] Horizontal Numbered List problem

2011-08-04 Thread Ghodmode
On Thu, Aug 4, 2011 at 3:13 AM, David Hucklesby huckle...@gmail.com wrote: I'm still missing something.  In your examples, I see counters named list and itemnr.  Where did those names come from? It's clearly not using classes or IDs.  I see in some instances where you might be defining those

Re: [css-d] Links not working in Safari after adding css animation

2011-08-04 Thread Ghodmode
On Thu, Aug 4, 2011 at 5:15 AM, Norman Fournier nor...@normanfournier.com wrote: Hello, I am working on a website at http://www.thehalcyoncore.com/ I added a simple animation of dripping paint using Adobe Edge and liked the results. I then added a decorative font using @font-face and that

Re: [css-d] Links not working in Safari after adding css animation

2011-08-04 Thread Norman Fournier
On 2011-08-04, at 2:05 AM, Ghodmode wrote: On Thu, Aug 4, 2011 at 5:15 AM, Norman Fournier nor...@normanfournier.com wrote: Hello, I am working on a website at http://www.thehalcyoncore.com/ I added a simple animation of dripping paint using Adobe Edge and liked the results. I then

[css-d] grouping nth-child

2011-08-04 Thread Joergen W. Lang
[selecting specific elements in a table without id or class attributes] Looking for a more elegant and versatile replacement for this: tr:first-child + tr + tr + tr td:first-child, tr:first-child + tr td:first-child + td, tr:first-child + tr + tr td:first-child + td + td + td,

Re: [css-d] grouping nth-child

2011-08-04 Thread Joergen W. Lang
Culprit: Safari 5.1/OS X 10.6.8 Test page: www.joergen-lang.de/test/nthchild-cells.html The test case works fine on first load. Reloading seems to mess things up. The problem only occurs when working with a local copy with S5.1. Newer webkits play along. Jørgen Am 04.08.11 11:10, schrieb

Re: [css-d] grouping nth-child

2011-08-04 Thread Philippe Wittenbergh
On Aug 4, 2011, at 6:52 PM, Joergen W. Lang wrote: Culprit: Safari 5.1/OS X 10.6.8 Test page: www.joergen-lang.de/test/nthchild-cells.html The test case works fine on first load. Reloading seems to mess things up. The problem only occurs when working with a local copy with S5.1. Newer

[css-d] help with a table wrapping around a float

2011-08-04 Thread Chris Kavinsky
I have a web page with a section of content floating to the right of the main content on the page. Within the main content is a table with a width set at 100% to fit the width of the page. The floated content comes first on the page so the main content will wrap around it, and it has a left margin

Re: [css-d] grouping nth-child

2011-08-04 Thread Joergen W. Lang
Am 04.08.11 13:31, schrieb Philippe Wittenbergh: On Aug 4, 2011, at 6:52 PM, Joergen W. Lang wrote: Culprit: Safari 5.1/OS X 10.6.8 Test page: www.joergen-lang.de/test/nthchild-cells.html [...] The problem only occurs when working with a local copy with S5.1. Newer webkits play along.

[css-d] Hide body and show any tag inside it.

2011-08-04 Thread Milano
Hi, I was wondering if it's possibel to hide the tag body and, after this, show some tag (eg. a div) inside the body element. After testing I'm quite sure It doesn't work by using normal ways. The problem: I have a page with various tags. In the printed version, only a div will be printed. I

Re: [css-d] help with a table wrapping around a float

2011-08-04 Thread Ghodmode
On Thu, Aug 4, 2011 at 9:33 PM, Chris Kavinsky ckavin...@gmail.com wrote: I have a web page with a section of content floating to the right of the main content on the page. Within the main content is a table with a width set at 100% to fit the width of the page. The floated content comes first

Re: [css-d] Hide body and show any tag inside it.

2011-08-04 Thread Philippe Wittenbergh
On Aug 4, 2011, at 11:11 PM, Milano wrote: Hi, I was wondering if it's possibel to hide the tag body and, after this, show some tag (eg. a div) inside the body element. After testing I'm quite sure It doesn't work by using normal ways. If you hide the whole body, all its descendants will be

Re: [css-d] Hide body and show any tag inside it.

2011-08-04 Thread Ghodmode
On Thu, Aug 4, 2011 at 10:11 PM, Milano rodrigo.mil...@gmail.com wrote: Hi, I was wondering if it's possibel to hide the tag body and, after this, show some tag (eg. a div) inside the body element. After testing I'm quite sure It doesn't work by using normal ways. The problem: I have a page

Re: [css-d] grouping nth-child

2011-08-04 Thread Philippe Wittenbergh
On Aug 4, 2011, at 10:58 PM, Joergen W. Lang wrote: Pretty weird. The first time I loaded your test case, it worked fine, then I reloaded and failure. I save the page locally, and it never worked correctly (from my local server). Only S5.1 or also other browsers? Safari 5.1 - the

Re: [css-d] Hide body and show any tag inside it.

2011-08-04 Thread Milano
Philippe: Your answer is very good. I really forget that this could be used. But I don't kno yet why this didn't work. When I try to view print (in IE) everything is hidden. Ghodmode Your answer helped me too. I was thinking in put some class=notprintable Thanks a lot, Rodrigo Ribeiro de Abreu

Re: [css-d] grouping nth-child

2011-08-04 Thread Joergen W. Lang
Am 04.08.11 16:46, schrieb Philippe Wittenbergh: That indeed fixes it. Omitting tfoot appears to be OK. Of course - the tfoot comes after the tbody in the rendering, and thus the counting of rows. Error on my side. I was mistaken because tfoot needs to be defined before tbody. When

[css-d] Inaccessible block at some screen resolutions

2011-08-04 Thread Beth Lee
On this page: http://www.callibeth.com/about.php the bottom of the div gmain3 is covered up by the footer when the height of the browser windows is between 305px and 750px tall. It's been 4 years, and it's time to redesign, but I'm looking for a quick fix in the meantime. Can anybody suggest

Re: [css-d] grouping nth-child

2011-08-04 Thread Philippe Wittenbergh
On Aug 5, 2011, at 12:56 AM, Joergen W. Lang wrote: tr:nth-child(1) th works just fine. Styling the tfoot seems to be a different story, though. I do not see any other way to reference it explicitely without using tfoot tr:nth-child(2) td:nth-child(3) { ... } Indeed, if you need