Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread Jukka K. Korpela
On Mon, 26 Mar 2007, Felix Miata wrote: > To be clear, all IE versions default not to Xpx, but to 12pt. The M$ factory > default DPI is 96, which translates 12pt to 16px. I think it needs to be added that this correspondence (or some other correspondence that has been chosen) does not change whe

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread kdavis
> O gentlemen and ladies, > Read the thread, read the whole thread, and read not only the thread. :-) > > There are links given to good explaining pages why/when fontsizing the > body , there are links to example pages... > Otherwise, we will circle in circles. And as we know, circles are round > (

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread Felix Miata
On 2007/03/26 17:13 (GMT-0700) David Hucklesby apparently typed: > On Mon, 26 Mar 2007 18:38:44 +0100, [EMAIL PROTECTED] wrote: >> I'm trying these with some success: >> html >> { >> font-family:; >> font-size:100% ;/***for IE/ >> } >> body >> { >> font-family:; >> font-size:1em; /***sets f

Re: [css-d] How to embed Flash movies?

2007-03-26 Thread Richard Grevers
On 3/24/07, Michael Stevens <[EMAIL PROTECTED]> wrote: > I'm working on a site redesign at www.regencygarden.com/test/ and there are > several pages there with Flash movies. They all validate XHTML 1.0 Strict > except for the pages with the Flash. The validator doesn't like anything > about the ta

Re: [css-d] IE5/6 Bumps Down

2007-03-26 Thread Duane Nelson
David Hucklesby wrote: > Yes - that *should* work. But IE 5/6 is ornery, and needs a bit of > "breathing room". Your width: 527px + margin-left: 233px on #main > is a bit too "tight" for that browser. I found that margin-left: 230px > works nicely. Or a slightly wider #container. I shortened the

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread francky
david wrote: > [EMAIL PROTECTED] wrote: > >> [...] >> > > Why even set a font size on the body? Let it be at whatever the visitor > has chosen for his or her preferred font size. Then use percentages for > everything else. > O gentlemen and ladies, Read the thread, read the whole threa

Re: [css-d] IE5/6 Bumps Down

2007-03-26 Thread David Hucklesby
On Mon, 26 Mar 2007 18:10:22 -0400, Duane Nelson wrote: > Here's my problem (and I'm sure the fix is embarrassingly simple): > A truism: "It's so simple, once you know the way." > Page Location w/ css: http://65.18.148.2/temp.html > > Within FF, all is well. But IE5/6 takes the "main" div and b

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread david
[EMAIL PROTECTED] wrote: > I, too, am struggling with the issue of optimum font sizes in css and > would love > to know if anyone has hit on keyword or em solution they are happy with? > > My goal is for everything to be resizeable and so I need to avoid pixels, > obviously. Currently, my solutio

[css-d] CSS menu oddness in IE7

2007-03-26 Thread Jade True
Can someone help me figure out what is going on with the css menus on this site in IE7? I can't seem to figure it out. http://www.zencart137.jadetrue.com (grey menu up top) If you spend some time traveling through the menu, then hover off the menu mid-travel, then come back to it, some parts

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread David Hucklesby
On Mon, 26 Mar 2007 18:38:44 +0100, [EMAIL PROTECTED] wrote: > I'm trying these with some success: > > html > { > font-family:; > font-size:100% ;/***for IE/ > } > > body > { > font-family:; > font-size:1em; /***sets font in un-altered browsers to 16px, Times New > Roman***/ > Not necessaril

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread Gunlaug Sørtun
[EMAIL PROTECTED] wrote: > I'm sorry, I don't understand why this is off-topic since it's about > how css works. It _is_ very much _on_ topic as long as we look at facts - CSS and browser behavior/bugs and how things work and/or don't. Interesting stuff that affects all designs. It may easily st

[css-d] IE5/6 Bumps Down

2007-03-26 Thread Duane Nelson
Here's my problem (and I'm sure the fix is embarrassingly simple): Page Location w/ css: http://65.18.148.2/temp.html Within FF, all is well. But IE5/6 takes the "main" div and bumps it down below the "sidebar" div. I've tried to clear but show my ignorance. How can I make "main" line up to

Re: [css-d] Random float drops

2007-03-26 Thread Richard Grevers
On 3/26/07, ~davidLaakso <[EMAIL PROTECTED]> wrote: > Richard Grevers wrote: > >>> > > Do Mac users have any problems with the updated page? > > > > > > > There are 15 captures here > . > Fair warning if the client is a nit-picker like me who ge

[css-d] IE 7 Horizontal Scrollbars : Your opinion please

2007-03-26 Thread Karl Bedingfield
Hi there, I have been trying to rid myself of unwanted horizontal scrollbars in IE6 & 7, after a couple of hours I tried my last resort which was: overflow: hidden; now is this permitted as valid css as it did indeed fix my IE horizontal scrollbar problems. #c-front-page #l-col { float:left; marg

Re: [css-d] Safari miscalculating "bottom" for absolute positioning

2007-03-26 Thread Zoe M. Gillenwater
Alex Robinson wrote: > the problem seems to be related to #project-areas and #latest-news. > Remove those two blocks and the problem goes away. As do the two > blocks. Of the two blocks it's #project-areas which is doing the most > damage. Try setting #project-areas p and #project-areas ul to di

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread Gunlaug Sørtun
[EMAIL PROTECTED] wrote: > Please bear with my ignorance, but when you say "set a base font" > does that mean to set the rule for body to 100% ? Normally: yes. However, there are cases where a font-size declared on html and/or body is disturbing, so then the base font must be set on an element f

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread kdavis
> Moreover, some might say, this thread has nothing to do with with the > mission of this list. I'm sorry, I don't understand why this is off-topic since it's about how css works. regards, karen __ css-discuss [EMAIL PROTECTED]

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread ~davidLaakso
Jukka K. Korpela wrote: > On Mon, 26 Mar 2007, ~davidLaakso wrote: > > >> html {font-size: 100%;} >> body {font-size: 1em;} >> and set individual selectors in em. >> > > Does that really summarize the collective wisdom? Logically, setting font > size to 100% or 1em is equivalent to not set

Re: [css-d] Linked image showing style

2007-03-26 Thread Kim Brooks Wei
Thanks Bradley! This worked fine. Thanks people for helping me work this out . . . Be well, Kimi At 1:17 PM +0100 3/25/07, Bradley Wright wrote: >It is the inline nature of the IMG that's making the BG colour shine >through. > >Try this CSS: >.imgcenter a img { > display: block; /* removes

Re: [css-d] Safari miscalculating "bottom" for absolute positioning

2007-03-26 Thread Alex Robinson
Zoe, the problem seems to be related to #project-areas and #latest-news. Remove those two blocks and the problem goes away. As do the two blocks. Of the two blocks it's #project-areas which is doing the most damage. Try setting #project-areas p and #project-areas ul to display: none to see wha

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread kdavis
> Exactly. I've never understood why some people set a base font size in > percentages, and then duplicate it with ems. I set a base font size in a > percentage, then use percentages throughout to size other elements > relative to that base. Of course, the base is going to be different for > every

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread grovesdavid
Hi, I would like to make one final comment. I thought css was suppose to make life easier. (Don't get me wrong I wouldn't go back to tables for a big stick). But nothing prepared me for the browser wars that have emerged with css, the old html never gave rise to as many problems, (at least no

[css-d] Safari miscalculating "bottom" for absolute positioning

2007-03-26 Thread Zoe M. Gillenwater
I'm not a Mac user, so I'm not skilled at debugging problems in Safari and am wondering if some of the Mac CSS gurus can help me. I have a footer div, relatively positioned, that contains two anchor elements which are absolutely positioned to appear on its bottom. This works everywhere except S

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread grovesdavid
Hi, It's amazing how much companies spend to just make web developers lives as difficult as possible? IE has a problem in resizing, ems, and even after you've set the body tag, you will need to set it for any: tables, select, & input. Also be aware that Safari sets it's default to 14px;, whic

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread Zoe M. Gillenwater
Jukka K. Korpela wrote: > On Mon, 26 Mar 2007, ~davidLaakso wrote: > > >> html {font-size: 100%;} >> body {font-size: 1em;} >> and set individual selectors in em. >> > > Does that really summarize the collective wisdom? Logically, setting font > size to 100% or 1em is equivalent to not set

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread Gunlaug Sørtun
[EMAIL PROTECTED] wrote: > Anyway, any thoughts on what works with ems or keywords so that > everything is resizeable would be interesting to me. Resize everything, or just the text? Thoughts don't help here since those browsers won't listen to anything but commands they understand, and I have n

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread kieron.mcintyre
I use the following and all browsers seem to render font sizes to what would usually be a 13px height: body{ font-family:Arial, Helvetica, sans-serif; font-size:82%; } Only IE5.x screws up rendering text in tables cells so I add the rule: table { font-size:100%; /* Needed for IE5.x */

Re: [css-d] IE7 special code

2007-03-26 Thread Chris Ovenden
Michael Geary wrote: > > From: Chris Ovenden > > I think it's disingenuous to call conditional comments > > "clean, basic HTML". We all want to do beautiful, > > cross-platform, futureproof page layouts using semantic, > > accessible markup; unfortunately user agents are currently > > not quite up

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread Jukka K. Korpela
On Mon, 26 Mar 2007, ~davidLaakso wrote: > html {font-size: 100%;} > body {font-size: 1em;} > and set individual selectors in em. Does that really summarize the collective wisdom? Logically, setting font size to 100% or 1em is equivalent to not setting it all, assuming that no other style sheet

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread ~davidLaakso
[EMAIL PROTECTED] wrote: >> Your question has already been answered. Read the thread. >> ~dL >> > > I did. > > Using em's to set fonts: html {font-size: 100%;} body {font-size: 1em;} and set individual selectors in em. Regards, ~dL -- http://chelseacreekstudio.com/ _

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread kdavis
> Your question has already been answered. Read the thread. > ~dL I did. __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ

Re: [css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread ~davidLaakso
[EMAIL PROTECTED] wrote: > I, too, am struggling with the issue of optimum font sizes in css and > would love > to know if anyone has hit on keyword or em solution they are happy with? > > > Your question has already been answered. Read the thread. ~dL -- http://chelseacreekstudio.com/ _

Re: [css-d] IE7 special code

2007-03-26 Thread Michael Geary
> > From: david > > CSS is a powerful thing, but it is intended to work with > > valid HTML (as the W3C CSS validator reports). Clean, > > basic HTML avoids problems. And conditional comments > > don't interfere with that at all. > From: Chris Ovenden > I think it's disingenuous to call conditiona

[css-d] perfect font sizes- any sample solutions?

2007-03-26 Thread kdavis
I, too, am struggling with the issue of optimum font sizes in css and would love to know if anyone has hit on keyword or em solution they are happy with? My goal is for everything to be resizeable and so I need to avoid pixels, obviously. Currently, my solution is body medium h1-3 medium weight

Re: [css-d] image replacement with links in IE

2007-03-26 Thread brian
Ingo Cao wrote: >>> Hi Brian, >>> Do you have, or can you make something to put on a public server >>> for us to look at? Just to show us the HTML you use and the effect >>> you are trying to achieve? >>> >> Right. You can see the design at www.semprinirecords.com > > This is a link to a page whe

Re: [css-d] IE7 special code

2007-03-26 Thread Chris Ovenden
On 3/23/07, david <[EMAIL PROTECTED]> wrote: > Barney Carroll wrote: > > david wrote: > >> Or avoid a bunch of hacks and just use conditional comments to feed IE7 > >> what it needs. I'm surprised no one has mentioned this yet! > > > > Quite refreshing, innit? I think it's because conditional comme