Re: [css-d] More ems fun!

2014-09-18 Thread Tom Livingston
The span is display none. Not the whole h1. On Thu, Sep 18, 2014 at 1:01 AM, Crest Christopher crestchristop...@gmail.com 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 ?

[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

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 j...@coffeeonmars.com 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

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 j...@coffeeonmars.com wrote: I have a situation

Re: [css-d] More ems fun!

2014-09-17 Thread John
On Sep 17, 2014, at 12:41 PM, Crest Christopher crestchristop...@gmail.com wrote: The H2 in your #taglinebox couldn't that be put in a p 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

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 Christophercrestchristop...@gmail.com wrote: The H2 in your #taglinebox couldn't that be put in ap tag, it's quite small text ? Absolutely, it could, and I tried

Re: [css-d] More ems fun!

2014-09-17 Thread Tom Livingston
On Wed, Sep 17, 2014 at 4:31 PM, Crest Christopher crestchristop...@gmail.com wrote: Span tags inside an H1 is suppose to help SEO, that would be news to me ! John wrote: h1 a href=index.php spanMy Headline Text/span !-- for SEO -- img src=images/logo.jpg id=logo

Re: [css-d] More ems fun!

2014-09-17 Thread John
On Sep 17, 2014, at 1:31 PM, Crest Christopher crestchristop...@gmail.com 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,

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 Karl DeSaulniers
On Sep 17, 2014, at 4:28 PM, Tim Climis tim.cli...@gmail.com 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

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 j...@coffeeonmars.com wrote: I

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 Climistim.cli...@gmail.com wrote: h1 span{ display:none; } prevents