Re: [css-d] RES: RES: child margin affecting parent?

2013-05-13 Thread Alan Gresley
On 13/05/2013 12:20 PM, Philippe Wittenbergh wrote: Le 13 mai 2013 à 11:08, COM j...@coffeeonmars.com a écrit : On May 12, 2013, at 7:04 PM, Alan Gresley a...@css-class.com Also, need to have a top margin value for the header so that I can position it vertically where I need it to, so am

[css-d] Layouts using multicol vs traditional style layouts.

2013-05-13 Thread Alan Gresley
Hello all, Here are some general questions. 1. Are there layouts that can not be achieved by using multicol [1]? 2. Do people use both traditional style layouts (floats, etc) together with multi-columns. 3. Is multicol still buggy in browsers. I have seen some spectacular ones with

Re: [css-d] Layouts using multicol vs traditional style layouts.

2013-05-13 Thread Kuzeko Web Design - Matteo Lissandrini
3. Is multicol still buggy in browsers. I have seen some spectacular ones with flexbox. Here you are: http://caniuse.com/#feat=multicolumn http://caniuse.com/#feat=flexbox -- Kuzeko __ css-discuss

Re: [css-d] Image and background colour changes on hover.

2013-05-13 Thread Pi Dizayn
It can only done with Javascript. On Wed, May 8, 2013 at 5:44 AM, Anna Gav agav...@gmail.com wrote: Hi all Re: http://imageshack.us/scaled/landing/703/sdfdsf.png I need to reproduce the functionality demonstrated in this image. The requirements are: When the menu items are hovered over

Re: [css-d] Image and background colour changes on hover.

2013-05-13 Thread Barney Carroll
There are all sorts of ways of achieving this. The tersest is probably using pseudo-elements CSS: http://jsfiddle.net/barney/wBUsa/ If you need to target older browsers that don't support pseudo-elements, you can add extra markup into your list items instead: http://jsfiddle.net/barney/PQhVn/

Re: [css-d] CSS3 Transitions

2013-05-13 Thread Pi Dizayn
Define expanding left. On Tue, Apr 23, 2013 at 1:13 PM, Anton Steiner oe2...@yahoo.de wrote: Hello CSS3 transitions are very amazing and i would try it for a search-bar. But the bar shoud expand to left. Is this possible with transitions? If found no solution to do so. Mny tx Anton

Re: [css-d] acronym text positioning

2013-05-13 Thread Pi Dizayn
Start using abbr. acronym will be deprecated. On Tue, Apr 23, 2013 at 2:51 AM, Larry Martell larry.mart...@gmail.comwrote: Is there a way to get the text assoicated with an acronym to display to the left of the the acronym instead of to the right?

Re: [css-d] CSS3 Transitions

2013-05-13 Thread Barney Carroll
Maybe you could use the 'left' property. Generally trial and error is incredibly easy with transitions: set the element to transition every property: element { transition: .3s; } Then try changing its properties on class or :hover / :focus state change, or modify its properties directly with

Re: [css-d] Layouts using multicol vs traditional style layouts.

2013-05-13 Thread Philippe Wittenbergh
Le 13 mai 2013 à 19:32, Alan Gresley a...@css-class.com a écrit : Hello all, Here are some general questions. 1. Are there layouts that can not be achieved by using multicol [1]? Lots of them. 'Multicol' is not a general layout mechanism. It is a mechanism to columnise text-flow. Handy

Re: [css-d] Image and background colour changes on hover.

2013-05-13 Thread Tom Livingston
On Mon, May 13, 2013 at 8:11 AM, Barney Carroll barney.carr...@gmail.com wrote: There are all sorts of ways of achieving this. The tersest is probably using pseudo-elements CSS: http://jsfiddle.net/barney/wBUsa/ If you need to target older browsers that don't support pseudo-elements, you

Re: [css-d] Image and background colour changes on hover.

2013-05-13 Thread Tedd Sperling
On Wed, May 8, 2013 at 5:44 AM, Anna Gav agav...@gmail.com wrote: Re: http://imageshack.us/scaled/landing/703/sdfdsf.png I need to reproduce the functionality demonstrated in this image. The requirements are: When the menu items are hovered over -the image on the left needs to change.

Re: [css-d] Image and background colour changes on hover.

2013-05-13 Thread Wade Smart
a id=MT href=index.phpspan Montana (MT)/span/a MT:hover { background: url(states/mt-usa.gif) no-repeat; width: 540px; height: 350px; position: absolute; top: 0px; left: 0px; z-index: 0; } This is just css. Its a hover. NO javascript needed at all. Wade

Re: [css-d] Image and background colour changes on hover.

2013-05-13 Thread Alan Gresley
On 13/05/2013 10:11 PM, Barney Carroll wrote: There are all sorts of ways of achieving this. The tersest is probably using pseudo-elements CSS: http://jsfiddle.net/barney/wBUsa/ If you need to target older browsers that don't support pseudo-elements, you can add extra markup into your list

[css-d] Top gap

2013-05-13 Thread Brian M. Curran
Hi! I can't get the last sentence -More project samples can be found here - on my portfolio page here: http://www.draftingservices.com/portfolio.html to have a gap between it and the table that is above it. Can anyone tell me why my padding css isn't working as I thought it should? Thanks,

Re: [css-d] Top gap

2013-05-13 Thread Wade Smart
-- Registered Linux User: #480675 Registered Linux Machine: #408606 Linux since June 2005 On Mon, May 13, 2013 at 4:01 PM, Brian M. Curran br...@draftingservices.com wrote: Hi! I can't get the last sentence -More project samples can be found here - on my portfolio page here:

Re: [css-d] Top gap

2013-05-13 Thread Tom Livingston
Clear the floats. I added clear: left; to the h3 and got the gap. On Mon, May 13, 2013 at 5:01 PM, Brian M. Curran br...@draftingservices.com wrote: Hi! I can't get the last sentence -More project samples can be found here - on my portfolio page here:

Re: [css-d] Top gap

2013-05-13 Thread Brian M. Curran
Thanks Wade, but I tried both, and neither worked. __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies --

[css-d] RES: Top gap

2013-05-13 Thread Mauricio Silva
The table that is above are floated elements, so you have to clear the floats in order the margin top for H3 to be honored. Add clear: both; to H3 Atenciosamente, Maurício Samy Silva http://maujor.com http://facebook.com/maujor @maujor -Mensagem original- De:

Re: [css-d] Top gap

2013-05-13 Thread Brian M. Curran
Thanks Tom and Mauricio! __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html