Re: [css-d] "Sliding doors" tabs not working

2007-04-20 Thread Dave M G
Jeffrey, Thank you for responding. > ...if you zero down the padding... You started me down the right path, and I realized along the way that I had reversed which way around the images should go. It works now, and with transparency too. Thanks for making the suggestions that got me going the ri

Re: [css-d] IE7: bug (?) on divs display: none / block toggle with javascript and overflow: auto

2007-04-20 Thread Simon White
> Simon White wrote: > > At any one time, three are hidden (display:none) and by clicking on > > the icon at the top of the block, you toggle the one which is not > > hidden (display:block) via a javascript function act_tab(). Ingo wrote: > Can't test it on a local copy due to all that ads stuff,

Re: [css-d] IE7: bug (?) on divs display: none / block toggle withjavascript and overflow: auto

2007-04-20 Thread Simon White
> > IE7 still has a bug with triggering duplicated content with > > display:none blocks > > > > [1] http://archivist.incutio.com/viewlist/css-discuss/84663 > > I'm glad to hear that this is a known bug. > > It seems that I need to set a negative 3px margin on the > blocks, I'm doing that now,

[css-d] Using an Image as Home (index) page

2007-04-20 Thread bo
Hi I am trying to design a site for a friend who owns a music store. He insists on having the store front picture he has as the home page. I can do that but my problem is how to do it so it looks fine at different resolutions with out having to make to different pages and using Java-script to send

Re: [css-d] Using an Image as Home (index) page

2007-04-20 Thread Dave Goodchild
Does he understand that if he uses an image as a homepage that users will not be able to cut and paste copy (ie contact details), search engines will not be able to index the content and that users with images disabled or using assistive technologies won't be able to see anything at all, unless you

Re: [css-d] Using an Image as Home (index) page

2007-04-20 Thread Barney Carroll
Scaling images using width/height: X%/Xem can do your job, however IE maps pixels in a truly disgusting fashion when you do this, and in any case you'd have to use a maximum dimensions definition to stop the image getting any bigger than its original size (which will look awful in everything re

Re: [css-d] Using an Image as Home (index) page

2007-04-20 Thread Mauricio Samy Silva
Hi Bo, Have a look at: http://www.cssplay.co.uk/layouts/background.html Regards, Maurício Samy Silva http://www.maujor.com/ - Original Message - From: "bo" <[EMAIL PROTECTED]> To: Sent: Friday, April 20, 2007 9:58 AM Subject: [css-d] Using an Image as Home (index) page > Hi I am tryi

Re: [css-d] Using an Image as Home (index) page

2007-04-20 Thread Jukka K. Korpela
On Fri, 20 Apr 2007, bo wrote: > Hi I am trying to design a site for a friend who owns a music store. He > insists on having the store front picture he has as the home page. I can do > that but my problem is how to do it so it looks fine at different > resolutions with out having to make to differ

[css-d] Columns filling vertical space

2007-04-20 Thread Daniel Hammond
I'm using the following technique to lay out a page: http://blog.html.it/layoutgala/LayoutGala13.html. How do I make the left (blue) and right (orange) columns extend fully to the footer, even if they just have a little bit of information in them? Daniel Hammond MotorcycleCarbs.com, Inc. www.moto

Re: [css-d] Columns filling vertical space

2007-04-20 Thread Mauricio Samy Silva
> I'm using the following technique to lay out a page: > http://blog.html.it/layoutgala/LayoutGala13.html. > > How do I make the left (blue) and right (orange) columns extend fully to > the > footer, even if they just have a little bit of information in them? > > Daniel Hammond Hi Daniel, This ca

Re: [css-d] Using an Image as Home (index) page

2007-04-20 Thread Kimberly Batteau
Consider using the picture as a background image. I did a similar thing when building this site: http://staff.reynolds.edu/mcline/index.html Two significant considerations: 1. I had to make the image about 22" wide so that it wouldn't repeat on the larger monitors, and had to construct the content

Re: [css-d] Links on background images

2007-04-20 Thread Austin, Darrel
> Darrel, create an with the desired link in the element > that has the background, and give the following CSS: FYI, Anahita is the one asking. That said, while your solution would work, you're left with an empty link (which is neither semantic nor terribly accessible). Again, if you want the

Re: [css-d] Links on background images

2007-04-20 Thread jeffrey morin
On 4/20/07, Austin, Darrel <[EMAIL PROTECTED]> wrote: > > > I have created a simple website where the logo is inserted as a > background image in the CSS. > >However, I would like the logo to be linked to the index page (so that > the user can click it). Is there > > any way to do that with the bac

[css-d] Links on background images

2007-04-20 Thread Anahita Shafa
Hello, I have created a simple website where the logo is inserted as a background image in the CSS. However, I would like the logo to be linked to the index page (so that the user can click it). Is there any way to do that with the background image (in other words, is it possible, in any way a

Re: [css-d] Links on background images

2007-04-20 Thread Barney Carroll
Austin, Darrel wrote: >> Darrel, create an with the desired link in the >> element that has the background, and give the following CSS: > > FYI, Anahita is the one asking. That said, while your solution would > work, you're left with an empty link (which is neither semantic nor > terribly accessi

Re: [css-d] Links on background images

2007-04-20 Thread Austin, Darrel
> Moving the span isn't a bad idea, however if you're doing this out of > concern for non-visual browsing, the title tag can do this part of the work. It *should* but AFAIK, many of the common screen readers ignore TITLE attributes by default. -Darrel __

Re: [css-d] Links on background images

2007-04-20 Thread Anahita Shafa
Thank you for your quick responses. I think it would make more sense if I inserted the image onto the page directly and had it linked, rather than leaving it as background image through CSS. Thank you, Anahita :) - Original Message From: "Austin, Darrel" <[EMAIL PROTECTED]> To: css-d@

Re: [css-d] help - ie7 leaving large gap in middle of page

2007-04-20 Thread jeffrey morin
> At the moment I don't see a 'huge' gap, but rather a stripe where there is > no background. That's normal: you have a background image on #contentLingo > set no-repeat, and the amount of contents (paragraphs) that you have > inside > is longer than the image's height. That also depends on text-si

Re: [css-d] Links on background images

2007-04-20 Thread Barney Carroll
Darrel, create an with the desired link in the element that has the background, and give the following CSS: #(container) {position:relative;} #(container) a#logo {display: block; position: absolute; top: (distance of logo from the top edge); left: (distance of logo from the left edge);

Re: [css-d] Links on background images

2007-04-20 Thread Austin, Darrel
> I have created a simple website where the logo is inserted as a background > image in the CSS. >However, I would like the logo to be linked to the index page (so that the >user can click it). Is there > any way to do that with the background image (in other words, is it possible, > in any way

Re: [css-d] Links on background images

2007-04-20 Thread Austin Harris
Come in a bit late on this lot but I would go for something like this, (untested but you get the idea); html; Whatever is written in the logo css; a.logo { display: block; width: width of image; height: height of image; background: url("url to image") no-repeat; } a.logo span { position: abso

Re: [css-d] Background Image flash on initial hover

2007-04-20 Thread David Hucklesby
On Thu, 19 Apr 2007 11:11:41 -0400, rollandburn wrote: > Hi everybody, just wondering if anyone can shed light on why the background > image on > the "LAWYERS click here to JOIN NOW!" link flashes blank for a second upon > initial > hover on this site > > http://mrrepublic.aphexhosting.com/MR

Re: [css-d] Links on background images

2007-04-20 Thread Anahita Shafa
Hi Austin, What is the purpose of putting the position of the a logo span to -px? I am still a newbie, so am learning. Anahita - Original Message From: Austin Harris <[EMAIL PROTECTED]> To: css-d Sent: Friday, April 20, 2007 11:52:52 AM Subject: Re: [css-d] Links on background im

Re: [css-d] Links on background images

2007-04-20 Thread Anahita Shafa
It works thank you... I guess the -px, is so that the text doesn't show, right? Thank you all :) Anahita - Original Message From: Anahita Shafa <[EMAIL PROTECTED]> To: css-d@lists.css-discuss.org Sent: Friday, April 20, 2007 11:55:56 AM Subject: Re: [css-d] Links on background

Re: [css-d] Links on background images

2007-04-20 Thread Austin Harris
> Hi Austin, > > What is the purpose of putting the position of the a logo span to > -px? I am still a newbie, so am learning. It's a basic way of replacing text with background images. See for more info. That takes the text "off scre

Re: [css-d] font smoothing

2007-04-20 Thread David Hucklesby
On Thu, 19 Apr 2007 17:14:53 -0600, DJS wrote: > I find this interesting. > I work on a Mac 99% of the time doing development, but recently I've started > a design > for my new site. > > Italic text: FF Win doesn't smooth the text like IE Win does. (!?) > > Dare I say, the text looks better in IE

Re: [css-d] Columns filling vertical space

2007-04-20 Thread David Hucklesby
Daniel Hammond asked: >> I'm using the following technique to lay out a page: >> http://blog.html.it/layoutgala/LayoutGala13.html. >> >> How do I make the left (blue) and right (orange) columns extend fully to the >> footer, even if they just have a little bit of information in them? >> >> Maurici

Re: [css-d] font smoothing

2007-04-20 Thread Lori Lay
DJS wrote: > I find this interesting. > I work on a Mac 99% of the time doing development, but recently I've > started a design for my new site. > > Italic text: FF Win doesn't smooth the text like IE Win does. (!?) > > Dare I say, the text looks better in IE Win, like it does on my Mac. > > I did

Re: [css-d] font smoothing

2007-04-20 Thread DJS
Lori Lay wrote: > DJS wrote: > >> I find this interesting. >> I work on a Mac 99% of the time doing development, but recently I've >> started a design for my new site. >> >> Italic text: FF Win doesn't smooth the text like IE Win does. (!?) >> >> Dare I say, the text looks better in IE Win, lik

Re: [css-d] font smoothing

2007-04-20 Thread Lori Lay
DJS wrote: >>> Italic text: FF Win doesn't smooth the text like IE Win does. (!?) >>> >>> Dare I say, the text looks better in IE Win, like it does on my Mac. >>> >>> >>> >> I don't think there's anything you can do in the browser. Font >> smoothing is called the ClearType Tuning tool

[css-d] Site Test Please

2007-04-20 Thread Kate Kelly
Hi Everyone, I work on a Mac and the site I¹m working on looks OK on that on most browsers. I even got it working OK in IE Mac. However, I have had a look on Browsershots.org at the Windows IE versions and noticed a couple of problems: * Version 6 ­ a stray 1 pixel line appears right across the m

Re: [css-d] font smoothing

2007-04-20 Thread jeffrey morin
On 4/20/07, Lori Lay <[EMAIL PROTECTED]> wrote: > > DJS wrote: > >>> Italic text: FF Win doesn't smooth the text like IE Win does. (!?) > >>> > >>> Dare I say, the text looks better in IE Win, like it does on my Mac. > >>> > >>> > >>> > >> I don't think there's anything you can do in the browser.

Re: [css-d] font smoothing

2007-04-20 Thread DJS
jeffrey morin wrote: > > > >you could even go as far as using ie conditional comments to > deliver text that would look better on a pc than a mac > >Jeff > > Well, it was looking good in IE7 win, just FF win. It's the culprit. I was using georgia, which I thought I understood as a

Re: [css-d] font smoothing

2007-04-20 Thread jeffrey morin
Well, it was looking good in IE7 win, just FF win. It's the culprit. > I was using georgia, which I thought I understood as a font that did > have a real italic version. > > I've already exchanged it with a background graphic, I'll get back to it > later. > > Thanks, > > Don that's

Re: [css-d] font smoothing

2007-04-20 Thread Lori Lay
DJS wrote: > jeffrey morin wrote: > >> >>you could even go as far as using ie conditional comments to >> deliver text that would look better on a pc than a mac >> >>Jeff >> >> >> > Well, it was looking good in IE7 win, just FF win. It's the culprit. > I was using georgia,

Re: [css-d] font smoothing

2007-04-20 Thread Michael Geary
> I don't think there's anything you can do in the browser. > Font smoothing is called the ClearType Tuning tool in Windows > and it wasn't included automatically in IE 6 or Win XP. It > is included automatically with IE 7. This affects the whole > OS, not just the browser. It's a utility y

Re: [css-d] font smoothing

2007-04-20 Thread DJS
Michael Geary wrote: >> I don't think there's anything you can do in the browser. >> Font smoothing is called the ClearType Tuning tool in Windows >> and it wasn't included automatically in IE 6 or Win XP. It >> is included automatically with IE 7. This affects the whole >> OS, not just the

Re: [css-d] font smoothing

2007-04-20 Thread Chris Williams
Yes, this may have appeared to veer off topic, but the question of why XP displays fonts differently in IE7 vs. IE6 and/or FF has been bugging me for months. I want to thank everyone who contributed to this thread for solving that mystery for me. I was absolutely convinced it was something my sit

[css-d] page check - footer problems in IE

2007-04-20 Thread Don Hinshaw
Hi all, I'm coding this crazy layout with lots of rules dividing up the space, and so far it is coming together pretty well, but I am up against a problem in IE (6+7) that I can't figure out the cause of. Here is the basic page: http://test.hinshawdesign.com/pfg/round2/template_css_v3.1.html Thi

[css-d] CSS menu and DIV are freezing -- Site check needed

2007-04-20 Thread Robert Tilley
The site in question is located at: "http://home.cfl.rr.com/rtgroup/index-tantra27.html";. Each menu option will display a corresponding text description in a content DIV in the left column. This works and can be verified by choosing any item, _except "Watsu"_, from the top menubar. Items ca

Re: [css-d] page check - footer problems in IE

2007-04-20 Thread Gunlaug Sørtun
Don Hinshaw wrote: > http://test.hinshawdesign.com/pfg/round2/template_css_v3.1.html > My intuition tells me that it has something to do with the floats > above the footer, but I fear I am in a little over my depth. You're close enough :-) Add a 'hasLayout'[1] trigger... #footer {width: 100%;}

Re: [css-d] Vailiation

2007-04-20 Thread Dejan Kozina
The latest HTML Validator extension for Firefox has it incorporated: http://users.skynet.be/mgueury/mozilla/ djn David Dorward wrote: > On 19/04/07, Arthur Maloney <[EMAIL PROTECTED]> wrote: >> I'm familiar with W3W validation service. >> A lot of the time I'm working on a laptop and the Inte

Re: [css-d] page check - footer problems in IE

2007-04-20 Thread Don Hinshaw
> > You're close enough :-) > > Add a 'hasLayout'[1] trigger... > > #footer {width: 100%;} > > ...to make IE recognize footer as a "block" that shall clear floats as > one unit. > > regards > Georg Thanks Georg, I love and hate how you make it so simple! You've bailed me out more than on

Re: [css-d] Vailiation

2007-04-20 Thread Christopher Blake
I followed this up yesterday and have managed to get one for safari too. And I found a way to clear the icons saved with my favourites - to show the new ones. Christopher Blake > The latest HTML Validator extension for Firefox has it incorporated: > http://users.skynet.be/mgueury/mozilla/ >