Re: [css-d] a:hover state in different browsers

2016-08-12 Thread Philippe Wittenbergh
> On Aug 13, 2016, at 10:19 AM, Tom Livingston wrote: > > The differences in font rendering between browsers, even with the same > font specified, wouldn't position things differently? Sure, but that has nothing to do with rem or other font(-size) related units (ems, ch, etc). Philippe -- Phi

Re: [css-d] a:hover state in different browsers

2016-08-12 Thread Tom Livingston
On Fri, Aug 12, 2016 at 9:16 PM, Philippe Wittenbergh wrote: > >> On Aug 13, 2016, at 9:05 AM, Tom Livingston wrote: >> >> I personally wouldn't use rem's for all of the units involved with >> that structure. rem is based on the root element's font size, making >> it - I assume - dependent on how

Re: [css-d] a:hover state in different browsers

2016-08-12 Thread Philippe Wittenbergh
> On Aug 13, 2016, at 9:05 AM, Tom Livingston wrote: > > I personally wouldn't use rem's for all of the units involved with > that structure. rem is based on the root element's font size, making > it - I assume - dependent on how each browser renders a font, which is > where your slight differen

Re: [css-d] a:hover state in different browsers

2016-08-12 Thread Philippe Wittenbergh
> On Aug 13, 2016, at 8:52 AM, John J wrote: > > At the link below, I'm having trouble getting the hover state to look the > same across browsers. On hover, there should be a red line under the > hovered-over item as wide as the thin gray line below it, as thick as that > line is. > > The thic

Re: [css-d] a:hover state in different browsers

2016-08-12 Thread Tom Livingston
On Fri, Aug 12, 2016 at 7:52 PM, John J wrote: > At the link below, I'm having trouble getting the hover state to look the > same across browsers. On hover, there should be a red line under the > hovered-over item as wide as the thin gray line below it, as thick as that > line is. > > The thickne

[css-d] a:hover state in different browsers

2016-08-12 Thread John J
At the link below, I'm having trouble getting the hover state to look the same across browsers. On hover, there should be a red line under the hovered-over item as wide as the thin gray line below it, as thick as that line is. The thickness seems to match, but the positioning is off, browser to b

Re: [css-d] a:hover: size of Background-color?

2013-09-19 Thread Philippe Wittenbergh
Le 20 sept. 2013 à 08:13, John a écrit : > why doesn't a:hover simply inherit display:block from nav ul li, its parent? The 'display' property is never inherited! http://www.w3.org/TR/CSS21/visuren.html#propdef-display > Inherited:no You should set 'nav ul li a' to display:block; the ho

Re: [css-d] a:hover: size of Background-color?

2013-09-19 Thread John
On 9/19/13 4:09 PM, David Laakso wrote: nav ul li a:hover{ display:block; color:red; background-color:rgb(0,0,0); } Thank you and that works, but why doesn't a:hover simply inheret display:block from nav ul li, its parent? John __

Re: [css-d] a:hover: size of Background-color?

2013-09-19 Thread David Laakso
On Thu, Sep 19, 2013 at 6:43 PM, John wrote: > What attribute governs the size (H x W) of background-color for the hover > state? I have background-color as rgb black, which appears on hover, but > only just around the text. I'd like the background color to cover a larger > area, as delineated by

[css-d] a:hover: size of Background-color?

2013-09-19 Thread John
What attribute governs the size (H x W) of background-color for the hover state? I have background-color as rgb black, which appears on hover, but only just around the text. I'd like the background color to cover a larger area, as delineated by the red border (which will go away) in the top lef

Re: [css-d] a:hover

2010-03-25 Thread Climis, Tim
> I'd like to make a:hover maroon and underlined, I tried it in the way I wrote > it below but it doesn't work, I'd appreciate it if you have any tips... > > a:hover > {color:Maroon;} > > > a:hover > {text-decoration: underline;} That should do it. Or for efficiency:

[css-d] a:hover

2010-03-25 Thread NICK KAY
Hi There, I'd like to make a:hover maroon and underlined, I tried it in the way I wrote it below (as a part of the other css code which is correct and in a separate style sheet, not within the mark-up of a visual studio master page) but it doesn't work, I'd appreciate it if you have any tips.

[css-d] a:hover

2010-03-25 Thread NICK KAY
_ Hotmail: Microsoft’un güçlü İSTENMEYEN POSTA koruması ile güvenilir e-posta. https://signup.live.com/signup.aspx?id=60969 ___

Re: [css-d] a:hover vs images with alpha chanel

2008-08-07 Thread Philippe Wittenbergh
On Aug 8, 2008, at 3:48 AM, snak detek+0r wrote: > and like i said earlier, > a img {...} > should work, but never seems to. Not really. As I noted in my previous post, that will disable a background-colour that is applied to the box generated for the image. You'll still have a backgroun

Re: [css-d] a:hover vs images with alpha chanel

2008-08-07 Thread Damian Gleason
Hi Josh, I'm by no means an expert, but I'd like to offer the following suggestion. If you are certain that the background color on each page is white then you can simply use the following css declaration a:hover img { background-color:#FFF; } whenever an imaged link is hovered over, it will di

Re: [css-d] a:hover vs images with alpha chanel

2008-08-07 Thread snak detek+0r
david, yes, you are right. but that really has nothing to do w/ my original question, which was: is there a way to disable a:hover for all images w/o resorting to something clumsy (such as the declarations that you asked me to clarify). and like i said earlier, a img {...} shou

Re: [css-d] a:hover vs images with alpha chanel

2008-08-05 Thread David Hucklesby
On Tue, 05 Aug 2008 14:11:51 -0400, snak detek+0r wrote: > >>> does anyone have a good way of universally disabling >>> >>> a:hover{background-color} >>> >>> for images? i always have this problem, and i'm never satisfied with the >>> solution. >>> it seems that you could fix it by styling >>> >>>

Re: [css-d] a:hover vs images with alpha chanel

2008-08-05 Thread snak detek+0r
>> does anyone have a good way of universally disabling >> >> a:hover{background-color} >> >> for images? i always have this problem, and i'm never satisfied with the >> solution. it >> seems that you could fix it by styling >> > > Do you have a use-case you could put online for us? > > Cord

Re: [css-d] a:hover vs images with alpha chanel

2008-08-05 Thread David Hucklesby
On Mon, 04 Aug 2008 23:27:38 -0400, snak detek+0r wrote: > hi there, > > does anyone have a good way of universally disabling > > a:hover{background-color} > > for images? i always have this problem, and i'm never satisfied with the > solution. it > seems that you could fix it by styling > > a img

Re: [css-d] a:hover vs images with alpha chanel

2008-08-04 Thread Seona Bellamy
2008/8/5 snak detek+0r <[EMAIL PROTECTED]>: > does anyone have a good way of universally disabling > >a:hover{background-color} > > for images? i always have this problem, and i'm never satisfied with the > solution. it seems that you could fix it by styling > >a img {background-col

Re: [css-d] a:hover vs images with alpha chanel

2008-08-04 Thread Philippe Wittenbergh
On Aug 5, 2008, at 12:27 PM, snak detek+0r wrote: > does anyone have a good way of universally disabling > > a:hover{background-color} > > for images? i always have this problem, and i'm never satisfied with > the > solution. it seems that you could fix it by styling > > a img {back

Re: [css-d] a:hover vs images with alpha chanel

2008-08-04 Thread David Jones
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > snak detek+0r > Sent: Monday, August 04, 2008 5:28 PM > To: css-d@lists.css-discuss.org > Subject: [css-d] a:hover vs images with alpha chanel > > hi there, > &g

[css-d] a:hover vs images with alpha chanel

2008-08-04 Thread snak detek+0r
hi there, does anyone have a good way of universally disabling a:hover{background-color} for images? i always have this problem, and i'm never satisfied with the solution. it seems that you could fix it by styling a img {background-color: transparent} or a:hover img {

Re: [css-d] a:hover with images and IE6

2008-07-28 Thread David Hucklesby
On Mon, 28 Jul 2008 17:33:22 +0200, Juan Diaz-Bustamante wrote: > Hello everybody and thank you for your time, > > I have created a small gallery that works under IE7, Firefox, Opera & Safari > but not > under IE6. > [code snipped] > > The problem here is the a:hover that doesn't work under IE6 an

[css-d] a:hover with images and IE6

2008-07-28 Thread Juan Diaz-Bustamante
Hello everybody and thank you for your time, I have created a small gallery that works under IE7, Firefox, Opera & Safari but not under IE6. *HTML:* ** There are two images under each a link, the small one displayed and the big one (class="producto_grande") only displayed when an a:hover occurs o

Re: [css-d] a:hover element in ie6

2008-05-28 Thread Joel Goldstick
Phillip Cavaco wrote: > The cursor:pointer property does work. But the color does not. Since the cursor works, I would check if you have a more specific rule that is overriding the color __ css-discuss [EMAIL PROTECTED] http://www

Re: [css-d] a:hover element in ie6

2008-05-28 Thread Ingo Chao
Phillip Cavaco wrote: ... > - simple "a" element with a "span" element in side of it. > - "a" with class "save" > > My CSS: > .save:hover span{ > color:#f00; > cursor:pointer; > } > > I thought in IE6 using a:hover element would work. It does. regarding the bug: a:hover {background-posi

[css-d] a:hover element in ie6

2008-05-28 Thread Phillip Cavaco
Hi everyone. I'm having a problem with our "friend" IE6. My xHTML: - simple "a" element with a "span" element in side of it. - "a" with class "save" My CSS: .save:hover span{ color:#f00; cursor:pointer; } I thought in IE6 using a:hover element would work. I saw something like that on http

[css-d] a:hover with absolute positions

2008-04-08 Thread tony
Hi, Thanks to Jim and Georg. Finally got my mind around sliding parts of a single image into view. >Add in a little absolute positioning, and you can make it look and behave just as you want. Example: < Georg's refined coding was a mega help.

[css-d] a:hover with absolute positions

2008-04-08 Thread tony
Hi, Thanks to Jim and Georg. Finally got my mind around sliding parts of a __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http:/

Re: [css-d] a:hover with absolute positions

2008-04-06 Thread Gunlaug Sørtun
tony wrote: > Well on the way to creating my first ever webpage but have run into a > problem. No surprise, but it isn't a bad start. > See: http://www.spiess.plus.com/ > > I don't know whether Im dealing with a syntax error, using the wrong > selector or just asking the impossible. As Jim p

Re: [css-d] a:hover with absolute positions

2008-04-06 Thread Jim Davis
Tony, You may find it worthwhile to read this article and study the demos. http://www.alistapart.com/articles/sprites/ You should be able to achieve your design with a single and css (and your image, of course). I use a bit of php to show the currently selected page and can send you that code if

[css-d] a:hover with absolute positions

2008-04-06 Thread tony
Hi, Well on the way to creating my first ever webpage but have run into a problem. To create my vertical navigation tabs and using my graphic image, I have to, I believe, absolutely position both the graphic and the text. This works fine but on a:hover the text and the graphic indicate separately

[css-d] a:hover causing page expansion in IE 5.2.3 mac

2007-03-01 Thread jeffrey morin
so my page works fine in ff but when i look at it in IE for mac every time i hover over the left nav links it expands the page's width and height. it just keeps expanding the more times you roll over the links. it doesn't do it with any links that are not included in this though so i know it's som

Re: [css-d] a:hover not working in first two items of ul, plis IEMac sitecheck

2007-01-19 Thread Gunlaug Sørtun
eric cash wrote: > I forgot to mention, the rollover problem is only in firefox, > although I swear it was in IE earlier... No such problem in Firefox, except that (as mentioned earlier) :visited overrides :hover in all browsers. That's because you have those link styles in the wrong order - :lin

Re: [css-d] a:hover not working in first two items of ul, plis IEMac sitecheck

2007-01-19 Thread eric cash
I forgot to mention, the rollover problem is only in firefox, although I swear it was in IE earlier... __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incuti

Re: [css-d] a:hover not working in first two items of ul, plis IEMac sitecheck

2007-01-19 Thread Gunlaug Sørtun
eric cash wrote: > Hopefully, I'm done with this thing, > http://www.mentallyregarded.com/advo , except for one problem, the first > two items in the menu won't rollover to their hover states. Can't see any problems. Those menu items won't change on hover once visited though. > Also, a site che

Re: [css-d] a:hover not working in first two items of ul, plis IEMac sitecheck

2007-01-19 Thread david
eric cash wrote: > Never again will I take a "finish it" job. > Thanks to philippe for pointing out the obvious that I couldn't see past > my red haze of anger. > > Hopefully, I'm done with this thing, > http://www.mentallyregarded.com/advo , except for one problem, the first > two items in the

[css-d] a:hover not working in first two items of ul, plis IEMac sitecheck

2007-01-19 Thread eric cash
Never again will I take a "finish it" job. Thanks to philippe for pointing out the obvious that I couldn't see past my red haze of anger. Hopefully, I'm done with this thing, http://www.mentallyregarded.com/advo , except for one problem, the first two items in the menu won't rollover to their h

Re: [css-d] a:hover padding different on img and text

2006-03-01 Thread Philippe Wittenbergh
On Mar 2, 2006, at 6:41 AM, Alisha wrote: > I don't know how to clearly explain this, i think the example will > explain it better. Anyway, this happens on firefox and the part of the > css which mess it i think is this one And happens on other browsers as well... > [...] > > The pages where it

[css-d] a:hover padding different on img and text

2006-03-01 Thread Alisha
I don't know how to clearly explain this, i think the example will explain it better. Anyway, this happens on firefox and the part of the css which mess it i think is this one a:link { color: #b2d1f6; } a:visited { color:#496280; } a:hover { border:1px solid #094a98; color:#094a

[css-d] a:hover @import bug - Possibly Connected to FOUC?

2006-02-03 Thread Kelly Miller
I was just thinking, this bug only shows in @import statements, not 's, right? Could it be connected in some obscure way to the Flash Of Unstyled Content which a lot of us have completely forgotten about? -- http://www.mozilla.org/products/firefox/ - Get Firefox! http://www.mozilla.org/product

Re: [css-d] a:hover border-bottom not showing up in IE?

2005-06-29 Thread Ingo Chao
Ingo Chao schrieb: Jason Baker schrieb: > ... http://www.onejasonforsale.com/ ... example html: home most relevant css: div#nav { position: absolute; top: 90%; left: 3%; z-index: 2; } div#nav a { color: black; background-color: white; margin: 2em 0.5em; padding: 0.10em 0.30em;

Re: Subject: RE: [css-d] a:hover border-bottom not showing up in IE?

2005-06-28 Thread Ingo Chao
Jason, is there a special reason why you didn't even tried the suggestion in my post? - Filter only apply to elements which have "layout", and any dimension will let your link gain this quality /* \*/ * html #nav a {height:1%} /* */ border and filter are back, but you'll

RE: Subject: RE: [css-d] a:hover border-bottom not showing up in IE?

2005-06-28 Thread Peter Williams
> From: Jason Baker > Peter, I have now added the "text-decoration:none;" > ...still do not see a bottom border in IE. > > Additionally i see that you have the class named "#nav a" rather >than "div#nav a", is there a difference? should i be doing things > one way or the other? I noted that ano

Subject: RE: [css-d] a:hover border-bottom not showing up in IE?

2005-06-28 Thread Jason Baker
>> From: "Peter Williams" <[EMAIL PROTECTED]> >> Have you turned off the default underlining ofr links in the div? >> #nav a {text-decoration:none;} Peter, I have now added the "text-decoration:none;" to both relevant sections of the css file but I still do not see a bottom border in IE. Here a

RE: [css-d] a:hover border-bottom not showing up in IE?

2005-06-28 Thread Will Merrell
Jason Baker wrote: > i have a few problems with a personal page that renders okay in firefox > but not so well in IE 6. my first problem is as follows: i want my links > to look like boxes with a black solid border on all sides and when the > user hovers over a link i want the border style to chang

Re: [css-d] a:hover border-bottom not showing up in IE?

2005-06-27 Thread Ingo Chao
Jason Baker schrieb: > ... http://www.onejasonforsale.com/ ... example html: home most relevant css: div#nav { position: absolute; top: 90%; left: 3%; z-index: 2; } div#nav a { color: black; background-color: white; margin: 2em 0.5em; padding: 0.10em 0.30em; font-family: helvetic

RE: [css-d] a:hover border-bottom not showing up in IE?

2005-06-27 Thread Peter Williams
> From: Jason Baker > ...in IE the bottom border doesnt change to dashed style. > Have you turned off the default underlining ofr links in the div? #nav a {text-decoration:none;} -- Peter Williams __ css-discuss [EMAIL PROTEC

[css-d] a:hover border-bottom not showing up in IE?

2005-06-27 Thread Jason Baker
i have a few problems with a personal page that renders okay in firefox but not so well in IE 6. my first problem is as follows: i want my links to look like boxes with a black solid border on all sides and when the user hovers over a link i want the border style to change to dashed. the follow