Re: [css-d] Fwd: Re: Making sure my container turned out

2010-06-13 Thread Peter Bradley
Ar 13/06/10 02:46, ysgrifennodd Thierry Koblentz : I believe the offset of relatively positioned elements is done in regard to their position in the normal flow, *not* in relation to a ancestor. They are *very* different from absolutely positioned elements. They can overlap surrounding boxes

[css-d] Pure CSS fisheye menu with icons: a demo

2010-06-13 Thread Gabriele Romanato
Hi all! I'm pretty inspired this time: http://onwebdev.blogspot.com/2010/06/pure-css-fisheye-menu-with-icons.html I didn't test it in IE before publishing it, though. Well, IE has its height: 100%, but I'm not sure that a#id:hover will work... thanks for your attention! bye :-) Gabriele

Re: [css-d] Pure CSS fisheye menu with icons: a demo

2010-06-13 Thread David Laakso
Gabriele Romanato wrote: Hi all! I'm pretty inspired this time: http://onwebdev.blogspot.com/2010/06/pure-css-fisheye-menu-with-icons.html I didn't test it in IE before publishing it, though. Well, IE has its height: 100%, but I'm not sure that a#id:hover will work... thanks for your

Re: [css-d] Pure CSS fisheye menu with icons: a demo

2010-06-13 Thread tedd
At 12:00 PM +0200 6/13/10, Gabriele Romanato wrote: Hi all! I'm pretty inspired this time: http://onwebdev.blogspot.com/2010/06/pure-css-fisheye-menu-with-icons.html I didn't test it in IE before publishing it, though. Well, IE has its height: 100%, but I'm not sure that a#id:hover will work...

Re: [css-d] Pure CSS fisheye menu with icons: a demo

2010-06-13 Thread David Laakso
Claude Needham wrote: It is most helpful having a live demo of the effect. That is something I missed with the first post in this thread. It is so convenient having a live page. Claude Claude, there is a link Gabriele's live demo page. I think you just didn't see it...

[css-d] css won't show in chrome, IEX

2010-06-13 Thread Thijs Hakkenberg
I made a site with a js which substitues css for different resolutions. But, IEX and Chrome won't show any css at all: http://kunstomhetlijf.nl/fileadmin/template/2010/index.html whilst firefox does show the css. Anyone know why?

[css-d] Table cell padding

2010-06-13 Thread BHomis
I'm waving the white flag here. I'm trying to create an html table using css attributes, and regardless of what I'm trying, I can't get rid of the cellpadding. Shouldn't this work? table{ padding:0px; } bhomis __

Re: [css-d] Table cell padding

2010-06-13 Thread Jukka K. Korpela
bho...@aol.com wrote: I'm waving the white flag here. I'm trying to create an html table using css attributes, and regardless of what I'm trying, I can't get rid of the cellpadding. Did you try setting the padding of cells to zero? Shouldn't this work? table{ padding:0px; } No, it

Re: [css-d] Pure CSS fisheye menu with icons: a demo

2010-06-13 Thread Claude Needham
Claude, there is a link Gabriele's live demo page. I think you just didn't see it... http://dev.css-zibaldone.com/demos/pure-css-fisheye-menu-icons/demo.html Best, ~d sheepish grin Right you are. Sitting there in plain sight for all to see. Thanks for pointing the way to it. It is a nice

Re: [css-d] css won't show in chrome, IEX

2010-06-13 Thread David Laakso
Thijs Hakkenberg wrote: I made a site with a js which substitues css for different resolutions. But, IEX and Chrome won't show any css at all: http://kunstomhetlijf.nl/fileadmin/template/2010/index.html whilst firefox does show the css. Anyone know why? Thijs, I will be the first admit

Re: [css-d] css won't show in chrome, IEX

2010-06-13 Thread Thierry Koblentz
I made a site with a js which substitues css for different resolutions. But, IEX and Chrome won't show any css at all: http://kunstomhetlijf.nl/fileadmin/template/2010/index.html whilst firefox does show the css. Anyone know why? David is right, it's the script. Try these two lines:

Re: [css-d] Pure CSS fisheye menu with icons: a demo

2010-06-13 Thread Thierry Koblentz
Hi Gabriele, I'm pretty inspired this time: http://onwebdev.blogspot.com/2010/06/pure-css-fisheye-menu-with- icons.html I didn't test it in IE before publishing it, though. Well, IE has its height: 100%, but I'm not sure that a#id:hover will work... thanks for your attention! bye :-)

[css-d] Basic formatting question

2010-06-13 Thread John Dick
I have the following style in my CSS: body { margin: 0; padding: 0; border: 0; } #ad { width: 275px; height: 275px; margin-top: 0; margin-bottom: auto; border: 5px black double; background-color: red; text-align: center; vertical-align:

Re: [css-d] Basic formatting question

2010-06-13 Thread Chris F.A. Johnson
On Sun, 13 Jun 2010, John Dick wrote: I have the following style in my CSS: body { margin: 0; padding: 0; border: 0; } #ad { width: 275px; height: 275px; margin-top: 0; margin-bottom: auto; border: 5px black double;

Re: [css-d] Basic formatting question

2010-06-13 Thread Thierry Koblentz
I have the following style in my CSS: body { margin: 0; padding: 0; border: 0; } #ad { width: 275px; height: 275px; margin-top: 0; margin-bottom: auto; border: 5px black double; background-color: red; text-align: center; vertical-align:

Re: [css-d] Basic formatting question

2010-06-13 Thread David Laakso
John Dick wrote: I have the following style in my CSS: body { margin: 0; padding: 0; border: 0; } #ad { width: 275px; height: 275px; margin-top: 0; margin-bottom: auto; border: 5px black double; background-color: red; text-align:

Re: [css-d] Basic formatting question

2010-06-13 Thread Thierry Koblentz
Hi David, The basic html is: div id=ad Our business is tax. /div Now if I view this in browsers (IE8, FF 3.6.3), the text isn't vertically aligned. However, if I put the text within tags (like: pOur business is tax./p the text appears to be vertically aligned. Changing the

Re: [css-d] Basic formatting question

2010-06-13 Thread David Hucklesby
On 6/13/10 5:17 PM, David Laakso wrote: John Dick wrote: I have the following style in my CSS: [code snipped and amended below] Now if I view this in browsers (IE8, FF 3.6.3), the text isn't vertically aligned. ... Thank you in advance for any advise on this. Here is another