Re: [css-d] More ems fun!

2014-09-18 Thread Tom Livingston
The is display none. Not the whole . On Thu, Sep 18, 2014 at 1:01 AM, Crest Christopher wrote: > The image is suppose to be seen, but it's not seen because the display is > set to none, but it's in a H1 so it works for SEO, but the image doesn't > display, hrm ? > > > Karl DeSaulniers wrote: >>

Re: [css-d] More ems fun!

2014-09-17 Thread Crest Christopher
The image is suppose to be seen, but it's not seen because the display is set to none, but it's in a H1 so it works for SEO, but the image doesn't display, hrm ? Karl DeSaulniers wrote: On Sep 17, 2014, at 4:28 PM, "Tim Climis" wrote: h1 span{ display:none; } prevents that from being seen

Re: [css-d] More ems fun!

2014-09-17 Thread John E. Cavanaugh
Help! I started getting these email at random - I never signed up, and I don't know what this about. How do I get off the mailing list? John E. Cavanaugh MD. "There's always a wrong way to do the right thing" ... Cavanaugh's Law > On Sep 17, 2014, at 13:19, John wrote: > > I have a situation

Re: [css-d] More ems fun!

2014-09-17 Thread Karl DeSaulniers
On Sep 17, 2014, at 4:28 PM, "Tim Climis" wrote: >> h1 span{ >> display:none; >> } >> >> prevents that from being seen (because the logo presumably says "Bob's hot > dog palace") but since it's in an h1, you get the > > benefits of better SEO > results..that is my understanding of why to use thi

Re: [css-d] More ems fun!

2014-09-17 Thread Tim Climis
> h1 span{ > display:none; > } > > prevents that from being seen (because the logo presumably says "Bob's hot dog palace") but since it's in an h1, you get the > > benefits of better SEO results..that is my understanding of why to use this technique. Why not just h1 {display:none} ? ---Tim

Re: [css-d] More ems fun!

2014-09-17 Thread John
On Sep 17, 2014, at 1:31 PM, Crest Christopher wrote: > Span tags inside an H1 is suppose to help SEO, that would be news to me ! Here is the reasoning, as I understand it..I am not an SEO whiz.. You have your logo - in most cases an image, but aside from alt text, nothing tells what it is. S

Re: [css-d] More ems fun!

2014-09-17 Thread Tom Livingston
On Wed, Sep 17, 2014 at 4:31 PM, Crest Christopher wrote: > Span tags inside an H1 is suppose to help SEO, that would be news to me ! > > > John wrote: >> >> >> >> My Headline Text >> >alt="My Headline Text" >>width="XXX" height="YYY" /> >> >> >> >> h1 span {

Re: [css-d] More ems fun!

2014-09-17 Thread Crest Christopher
Span tags inside an H1 is suppose to help SEO, that would be news to me ! John wrote: On Sep 17, 2014, at 12:41 PM, Crest Christopher wrote: The H2 in your #taglinebox couldn't that be put in a tag, it's quite small text ? Absolutely, it could, and I tried that and suddenly that little t

Re: [css-d] More ems fun!

2014-09-17 Thread John
On Sep 17, 2014, at 12:41 PM, Crest Christopher wrote: > The H2 in your #taglinebox couldn't that be put in a tag, it's quite > small text ? Absolutely, it could, and I tried that and suddenly that little tag got huge..there’s something going on with that that I need to re-visit but I can’t

Re: [css-d] More ems fun!

2014-09-17 Thread Tom Livingston
If not compounding then it's the relation of the width in ems and the font-sizes. EMs used for things other than font-size (like width or margin) are relative to the font-size of *the element it is applied to*. On Wed, Sep 17, 2014 at 2:19 PM, John wrote: > I have a situation in which I modified

Re: [css-d] More ems fun!

2014-09-17 Thread Tom Livingston
Seems like a compounding issue. I don't really recommend putting your h2 inside your h1. On Wed, Sep 17, 2014 at 2:19 PM, John wrote: > I have a situation in which I modified my header logo and tag line to be > wrapped in an h1 tag and now it seems that my alignment of header elements > doesn’t

[css-d] More ems fun!

2014-09-17 Thread John
I have a situation in which I modified my header logo and tag line to be wrapped in an h1 tag and now it seems that my alignment of header elements doesn’t respect the left edge they had before, and the value of em seems to be way off…I increased my tag line to enable the line not to break by ma