Re: [css-d] Help with adding a class and overriding the parent class style

2012-05-29 Thread Larry Martell
On Tue, May 29, 2012 at 12:49 AM, Micky Hulse wrote: > Hello, > > On Mon, May 28, 2012 at 10:03 PM, Larry Martell > wrote: >> I have tried every which way I can think of to specify this, e..g.: >> #waferiz .waferviz .wafer_summary .metadata b { >>   color: black; >> } > > I don't know your full

[css-d] Img Hover Background-Color Won't Go

2012-05-29 Thread Duane Nelson
Good morning, all. I'm using the following link attributes: #nav-footer a:link, #legal a:link, #rcol a:link, #content a:link, #blog a:link { color: #513420; text-decoration: none; font-weight: bold; } #nav-footer a:visited, #legal a:visited, #rcol a:visited, #content a:visited, #

Re: [css-d] Img Hover Background-Color Won't Go

2012-05-29 Thread Jérome Loï
your problem is not on the image itself, but on the link, quickfix : #promo a {background-color:#fff !important} the real fix woul be to make the rule that put this bcg less strong, but i don't have the time to do it now :) 2012/5/29 Duane Nelson > Good morning, all. > > I'm using the followi

Re: [css-d] Img Hover Background-Color Won't Go

2012-05-29 Thread David Hucklesby
On 5/29/12 8:06 AM, Duane Nelson wrote: Good morning, all. I'm using the following link attributes: [code snipped] My issue comes when an image is linked within any of the above "div ids." The below image code takes away the border around the image but the above hover background-color appear

Re: [css-d] Img Hover Background-Color Won't Go

2012-05-29 Thread Duane Nelson
On 5/29/2012 12:29 PM, David Hucklesby wrote: Try adding "vertical-align: middle;" to that rule for "a img". Thanks to David and Jerome. Looks like you've given me good solutions. Blessings, Duane __ css-discuss [css-d@lis

[css-d] how to create a linear color gradient for the background

2012-05-29 Thread meera kibe
Hi I want to create a simple linear gradient for the background (basically styiling the background of body) I am able to add linear gradient on a div inside the body but it does'nt work out with the background  Can someone give a working example Thanks Meera __

Re: [css-d] IE8, :hover, underline, and generated content

2012-05-29 Thread Paceaux
Did anyone have any thoughts on removing underline from generated content in the hover state for IE? I did some checking and it appears that the behavior occurs in all versions of IE? I'm guessing that this is default behavior for IE, then, to allow generated content to always inherit the hover

Re: [css-d] how to create a linear color gradient for the background

2012-05-29 Thread Tom Livingston
On Tue, May 29, 2012 at 12:49 PM, meera kibe wrote: > Hi > I want to create a simple linear gradient for the background (basically > styiling the background of body) > I am able to add linear gradient on a div inside the body but it does'nt work > out with the background > Can someone give a wor

[css-d] IE absolute

2012-05-29 Thread S Baily-Gould
Hi all, At http://www.SydneyJaneBaily.com, which is my home/splash page, the nav menu is supposed to be over the purple book mark and looks just fine in Firefox. But in IE (only checked 8 and 9), the nav shows on the upper left as if no positioning at all and looks like a bulleted list. Ugly! Ca

Re: [css-d] IE absolute

2012-05-29 Thread Tom Livingston
You probably need to add position:relative; to its parent. Otherwise it keeps looking for the parent element that it is positioned relative to, which may be the body. Sent from iOS 5 On May 29, 2012, at 6:55 PM, "S Baily-Gould" wrote: > Hi all, > At http://www.SydneyJaneBaily.com, which is m

[css-d] -webkit-tap-highlight-color

2012-05-29 Thread Christian Ziebarth
I recently worked on a project where for the iPad I altered the -webkit-tap-highlight-color value to a value that would match the color scheme of the site (http://www.brianleatart.com). I then told the project manager what I did thinking she would think it was neat and leave it at that but she

Re: [css-d] IE absolute

2012-05-29 Thread David Hucklesby
On 5/29/12 3:55 PM, S Baily-Gould wrote: Hi all, At http://www.SydneyJaneBaily.com, which is my home/splash page, the nav menu is supposed to be over the purple book mark and looks just fine in Firefox. But in IE (only checked 8 and 9), the nav shows on the upper left as if no positioning at all

Re: [css-d] -webkit-tap-highlight-color

2012-05-29 Thread Philippe Wittenbergh
On May 30, 2012, at 8:19 AM, Christian Ziebarth wrote: > I recently worked on a project where for the iPad I altered the > -webkit-tap-highlight-color value to a value that would match the color > scheme of the site (http://www.brianleatart.com). I then told the project > manager what I did th

Re: [css-d] IE8, :hover, underline, and generated content

2012-05-29 Thread Philippe Wittenbergh
On May 30, 2012, at 2:51 AM, Paceaux wrote: > Did anyone have any thoughts on removing underline from generated content in > the hover state for IE? > > I did some checking and it appears that the behavior occurs in all versions > of IE? I'm guessing that this is default behavior for IE, then,