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 Suppo

[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: css-d-boun...@lists.css-dis

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 -- http://css-discuss

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 wrote: > 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

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 wrote: > Hi! > I can't get the last sentence -"More project samples can be found here" - on > my portfolio page here: > > http://www.draftingservices.com/por

[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, Bri

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 item

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

2013-05-13 Thread Wade Smart
Montana (MT) 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 __ cs

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 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 Tom Livingston
On Mon, May 13, 2013 at 8:11 AM, 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

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 é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 for e.g achiev

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] 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 wrote: > 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 Pi Dizayn
Define expanding left. On Tue, Apr 23, 2013 at 1:13 PM, Anton Steiner 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] 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/ R

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 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 > -the ima

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 [css-d@lists

[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 flexbox.

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 a écrit : On May 12, 2013, at 7:04 PM, Alan Gresley 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 I forced to use padding for this? Assu