Re: [css-d] Firefox displays correct title, Safari shows "index.html"

2010-04-20 Thread David Laakso
John wrote: > > On Apr 20, 2010, at 2:59 PM, David Laakso wrote: > >> Validate. > > > Well, that helped me to find the issue, which was a missing close > quotation mark in my meta tag! > > From now on Firefox and the developer toolkit will be part of my > regular work flow in web coding. > > John

Re: [css-d] IE problems - Float problem??

2010-04-20 Thread David Laakso
Peter Bradley wrote: > > Thanks very much for that, David, but no joy, I'm afraid. It doesn't > render properly in any version of IE (6, 7 or 8). TBH, if I could > just get it working in IE8 it'd be something. > > > > Peter > It "seems: to work this end in XP IE 6/7/8 on a Mac-- unless I ha

Re: [css-d] IE problems - Float problem??

2010-04-20 Thread Peter Bradley
David Laakso wrote: > In your style sheet you have this hack from a couple of weeks ago: > > /*Bit of nonsense for IE6 */ > * html #wrapper { > width:975px; > margin: 0 auto; > } > > Leave that hack in the style sheet. Immediately above it put these hacks: > > *:first-child+html #wrapper {

Re: [css-d] Firefox displays correct title, Safari shows "index.html"

2010-04-20 Thread David Laakso
John wrote: > I am a person of beginner/intermediate CSS skills, resuming the > honing of my coding chops... > > > > Any ideas? > > > > John > URL? Did you validate? ~d -- desktop http://chelseacreekstudio.com/ mobile http://chelseacreekstudio.mobi/

Re: [css-d] IE problems - Float problem??

2010-04-20 Thread David Laakso
Peter Bradley wrote: > I have a problem again with IE6 and 7. I'm doing a demonstration form > but can't get the second fieldset to right align in either IE6 or IE7. > The HTML and CSS both validate and I've tried some conditional comments, > which have worked for some other problems, but not

[css-d] Firefox displays correct title, Safari shows "index.html"

2010-04-20 Thread John
I am a person of beginner/intermediate CSS skills, resuming the honing of my coding chops... I have a bare-bones document whose file name is "index.html," but in the code, within the head tag, my title is: 02-02 Firefox will display this as the page title at the top of a window into which

[css-d] IE problems - Float problem??

2010-04-20 Thread Peter Bradley
Hi, I have a problem again with IE6 and 7. I'm doing a demonstration form but can't get the second fieldset to right align in either IE6 or IE7. The HTML and CSS both validate and I've tried some conditional comments, which have worked for some other problems, but not for this. Also, the con

Re: [css-d] Text next to logo

2010-04-20 Thread Brian M. Curran
> >On 20/04/2010, at 7:16 PM, Brian M. Curran wrote: > > >> Hi All, >> Does someone know why the text in my masthead is not aligning to the >> right of my logo, but rather it is sitting below it? >> >> http://www.draftingservices.com/logo.html >> >> Sincerely, >> Brian >> >Chris wrote: > Hi, > >

Re: [css-d] Text next to logo

2010-04-20 Thread Chris Blake
Hi, Your title div has clear: both; clearing the float! cheers, CB On 20/04/2010, at 7:16 PM, Brian M. Curran wrote: > Hi All, > Does someone know why the text in my masthead is not aligning to the > right of my logo, but rather it is sitting below it? > > http://www.draftingservices.com/lo

[css-d] Text next to logo

2010-04-20 Thread Brian M. Curran
Hi All, Does someone know why the text in my masthead is not aligning to the right of my logo, but rather it is sitting below it? http://www.draftingservices.com/logo.html Sincerely, Brian __ css-discuss [cs...@lists.css-discuss

Re: [css-d] Container doesn't contain as expected

2010-04-20 Thread MEM
2010/4/20 MEM > > Thank you all, > > Any reference that I could look at about the relation between the > overflow:hidden and similar issues, so that I can learn more about it, > please. :) > I've searched containing floats article on css-d wiki but, no luck... > > > Update: I've found some posts

Re: [css-d] Container doesn't contain as expected

2010-04-20 Thread MEM
>I believe the standard way to deal with this is "overflow:hidden" on > >the containing element. >Otherwise you have to use "clear" on the following element. >-- >Ed Seedhouse > > > >remove float: right from your footer. > >The problem is that you have those sections and the footer floating. To cle