Re: [css-d] Styling and

2011-04-25 Thread Chetan Crasta
> You could go about it in this way: > For the home page, give the body tag the class "home" ( class="home">), for the About Us page, () and > so on. > The menu items should also have classes, eg ( class="home">HomeAbout Us...). > > Your css should look like this: > > .home .home { display:none;} >

Re: [css-d] Styling and

2011-04-25 Thread Jukka K. Korpela
David Hucklesby wrote: If I understand you correctly, you want a consistent menu structure on every page, but want to style the current page item differently? If so, perhaps you can replace the A element with something else, just for that one item? Probably the simplest way is to use ... with

Re: [css-d] IE 6 /5.5 problem

2011-04-25 Thread David Hucklesby
On 4/25/11 2:23 PM, Sol Sinclair wrote: Hi all; I am having trouble with a float drop in IE 5.5 and 6 -- don't know about IE7, as I don't have that. Right now, I want to get it looking right in 5.5 and 6 (IE). The page is at: http://www.robertsmart.ca/ZZnew/index.html I don't know why the #co

Re: [css-d] OT: Protecting pictures

2011-04-25 Thread John D
You what you have done is to use some trickery to get this picture: Very nice!! A casual user won't know what to do to get it. > Date: Tue, 26 Apr 2011 09:49:35 +0530 > Subject: Re: [css-d] OT: Protecting pictures > From: chetancra...@gmai

Re: [css-d] OT: Protecting pictures

2011-04-25 Thread Chetan Crasta
> How do you guys protect your images on the web? I normally don't bother trying to "protect" images because all the methods can be circumvented. But if a client insists on it, I use this technique: I overlay an absolutely positioned, transparent, div over the image. Right clicking on the image is

Re: [css-d] Styling and

2011-04-25 Thread Chetan Crasta
You could go about it in this way: For the home page, give the body tag the class "home" (), for the About Us page, () and so on. The menu items should also have classes, eg (HomeAbout Us...). Your css should look like this: .home .home { display:none;} .about_us .about_us, .contact_us .contact_u

Re: [css-d] IE 6 /5.5 problem

2011-04-25 Thread Alex Mitchell
On Mon, Apr 25, 2011 at 2:23 PM, Sol Sinclair wrote: > Hi all; > > I am having trouble with a float drop in IE 5.5 and 6 -- don't know about > IE7, as I don't have that. Right now, I want to get it looking right in 5.5 > and 6 (IE). The page is at: > > http://www.robertsmart.ca/ZZnew/index.html >

Re: [css-d] Styling and

2011-04-25 Thread David Hucklesby
On 4/25/11 1:00 PM, Neil Hunt wrote: I am trying to do the following: (1) Create a menu where the "home" button does not appear on the "home page." I added css to make the display property=none for the "home" button on the home page using the id's for the page(body), menu(ul) and menu item(li).

Re: [css-d] getting the TJK design vertical css drop down menu to work

2011-04-25 Thread Sandy
http://sandyfeldman.com/villab/en/index.shtml http://sandyfeldman.com/villab/css_js/villab.css http://sandyfeldman.com/villab/css_js/TJK_keyBoardDropDown.js The sub-menu only show in full when you have JS enabled. It's a attempt at making a menu keyboard friendly. I did similar with this dem

Re: [css-d] IE 6 /5.5 problem

2011-04-25 Thread Kevin A. Cameron
IE5.5 and 6?!?! Kidding, kidding (but not really). I'd try defining those widths in px, instead of em. Kevin On Mon, Apr 25, 2011 at 2:23 PM, Sol Sinclair wrote: > Hi all; > > I am having trouble with a float drop in IE 5.5 and 6 -- don't know about > IE7, as I don't have that. Right now, I wa

[css-d] IE 6 /5.5 problem

2011-04-25 Thread Sol Sinclair
Hi all; I am having trouble with a float drop in IE 5.5 and 6 -- don't know about IE7, as I don't have that. Right now, I want to get it looking right in 5.5 and 6 (IE). The page is at: http://www.robertsmart.ca/ZZnew/index.html I don't know why the #content is not floating up beside the #me

Re: [css-d] Styling and

2011-04-25 Thread Dan Kaufman
Will the site be composed of individual html pages? Home.html, About.html, Contact.html, etc. Or will it use "dynamic" server-side generated pages such as *.php, *.cfm, *.asp, etc. ? Dan -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discus

[css-d] Styling and

2011-04-25 Thread Neil Hunt
I am trying to do the following: (1) Create a menu where the "home" button does not appear on the "home page." I added css to make the display property=none for the "home" button on the home page using the id's for the page(body), menu(ul) and menu item(li). See code below... (2) Change color of

Re: [css-d] getting the TJK design vertical css drop down menu to work

2011-04-25 Thread Alan Gresley
On 26/04/2011 5:17 AM, Sandy wrote: hey all, If this looks familiar it's because I changed the subject. I didn't get any replies to my last email, subject line "sub menus show up on hover but not on focus" and I'm stumped. I hope someone out there can help! I am working on a test page that has

[css-d] getting the TJK design vertical css drop down menu to work

2011-04-25 Thread Sandy
hey all, If this looks familiar it's because I changed the subject. I didn't get any replies to my last email, subject line "sub menus show up on hover but not on focus" and I'm stumped. I hope someone out there can help! I am working on a test page that has a sub menu which displays on hover

Re: [css-d] sub menus show up on hover but not on focus

2011-04-25 Thread Brian Jones
>On Mon, Apr 25, 2011 at 10:20 AM, Sandy wrote: > I am working on a test page that has a sub menu which displays on hover but > not on focus. How do I get the sub menus (for example the 3 links under > "location") to show up when someone tabs to the link the way they do when > someone hovers over

[css-d] sub menus show up on hover but not on focus

2011-04-25 Thread Sandy
hey all, I am working on a test page that has a sub menu which displays on hover but not on focus. How do I get the sub menus (for example the 3 links under "location") to show up when someone tabs to the link the way they do when someone hovers over it? http://sandyfeldman.com/villab/en/ind

Re: [css-d] Can a DIV be made "invisible" to mouse clicks?

2011-04-25 Thread Martin G
Ingo, Georg, Thank you for responding. https://developer.mozilla.org/en/css/pointer-events > That is awesome, and exactly the kind of solution I was hoping for. It works for me in Firefox and Chome. Of course, all indications are that it does not work in Internet Explorer. I will, however, re