Re: [css-d] IE 9 and floats

2012-09-27 Thread Dave Solko
Tom, That did it. I thought I had tried a width there earlier, but evidently not. Everything else respects the width of the , but I guess IE just figures the :after isn't bound by the because, well, it's after, so it goes as wide as it can. The funny thing is that it only effected the first li

Re: [css-d] Footer Needs a Couple CSS Tweaks

2012-09-27 Thread Tom Livingston
On Thu, Sep 27, 2012 at 3:45 PM, Gates, Jeff wrote: > > > On 9/27/12 3:05 PM, "Tom Livingston" wrote: > >>On Thu, Sep 27, 2012 at 2:59 PM, Gates, Jeff wrote: >>> >>> >>> On 9/27/12 2:45 PM, "Tom Livingston" wrote: >>> On Thu, Sep 27, 2012 at 2:37 PM, Gates, Jeff wrote: > > > On

Re: [css-d] Footer Needs a Couple CSS Tweaks

2012-09-27 Thread Gates, Jeff
On 9/27/12 3:05 PM, "Tom Livingston" wrote: >On Thu, Sep 27, 2012 at 2:59 PM, Gates, Jeff wrote: >> >> >> On 9/27/12 2:45 PM, "Tom Livingston" wrote: >> >>>On Thu, Sep 27, 2012 at 2:37 PM, Gates, Jeff wrote: On 9/27/12 2:09 PM, "Tom Livingston" wrote: >I think #2 is

Re: [css-d] Footer Needs a Couple CSS Tweaks

2012-09-27 Thread Tom Livingston
On Thu, Sep 27, 2012 at 2:59 PM, Gates, Jeff wrote: > > > On 9/27/12 2:45 PM, "Tom Livingston" wrote: > >>On Thu, Sep 27, 2012 at 2:37 PM, Gates, Jeff wrote: >>> >>> >>> On 9/27/12 2:09 PM, "Tom Livingston" wrote: >>> I think #2 is related to #1... On Thu, Sep 27, 20

Re: [css-d] Footer Needs a Couple CSS Tweaks

2012-09-27 Thread Gates, Jeff
On 9/27/12 2:45 PM, "Tom Livingston" wrote: >On Thu, Sep 27, 2012 at 2:37 PM, Gates, Jeff wrote: >> >> >> On 9/27/12 2:09 PM, "Tom Livingston" wrote: >> >>>I think #2 is related to #1... >>> >>> >>> >>> >>>On Thu, Sep 27, 2012 at 2:04 PM, Gates, Jeff wrote: I am creating a new footer fo

Re: [css-d] Footer Needs a Couple CSS Tweaks

2012-09-27 Thread Tom Livingston
On Thu, Sep 27, 2012 at 2:37 PM, Gates, Jeff wrote: > > > On 9/27/12 2:09 PM, "Tom Livingston" wrote: > >>I think #2 is related to #1... >> >> >> >> >>On Thu, Sep 27, 2012 at 2:04 PM, Gates, Jeff wrote: >>> I am creating a new footer for our organization's website. And I almost >>> have it but c

Re: [css-d] Footer Needs a Couple CSS Tweaks

2012-09-27 Thread Gates, Jeff
On 9/27/12 2:09 PM, "Tom Livingston" wrote: >I think #2 is related to #1... > > > > >On Thu, Sep 27, 2012 at 2:04 PM, Gates, Jeff wrote: >> I am creating a new footer for our organization's website. And I almost >> have it but can't seem to fix a couple things. >> >> You can see the page in qu

Re: [css-d] Footer Needs a Couple CSS Tweaks

2012-09-27 Thread Tom Livingston
I think #2 is related to #1... On Thu, Sep 27, 2012 at 2:04 PM, Gates, Jeff wrote: > I am creating a new footer for our organization's website. And I almost > have it but can't seem to fix a couple things. > > You can see the page in question here: > http://americanart.si.edu/collections/index

Re: [css-d] Footer Needs a Couple CSS Tweaks

2012-09-27 Thread Tom Livingston
For #1, looks like .siteinfolinks has a top padding, and you need to clear the 3 cols in the footer. Digging on #2... HTH On Thu, Sep 27, 2012 at 2:04 PM, Gates, Jeff wrote: > I am creating a new footer for our organization's website. And I almost > have it but can't seem to fix a couple things

[css-d] Footer Needs a Couple CSS Tweaks

2012-09-27 Thread Gates, Jeff
I am creating a new footer for our organization's website. And I almost have it but can't seem to fix a couple things. You can see the page in question here: http://americanart.si.edu/collections/index_footer.cfm The issues are: 1. I can't seem to get rid of the white space under the brown foote

Re: [css-d] Positioning a div

2012-09-27 Thread Del Wegener
I would play with floats. Thanks mem. I did play around as you suggested and it turned out that the secret was with overflow:auto. Del __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listi

Re: [css-d] Positioning a div

2012-09-27 Thread mem
Other more experienced may help better then me. Still. I would play with floats. 1) Add overflow:hidden; to your #container 2) Add float: left; to both: vmenu and content; 3) Add overflow:hidden; to your #content 4) Group on a div, your h3 and img inside #content; 5) Float left your blue div; 6)

[css-d] Positioning a div

2012-09-27 Thread Del Wegener
Good Morning; A colored illustration of my problem is at http://www.alliedcorrosion.com/products/aa_testing.php My question also appears in the green box in that illustration. I have a pretty standard vertical menu (orange) on the left with content (gray) on the right. At the top of the con

Re: [css-d] IE 9 and floats

2012-09-27 Thread Tom Livingston
Dave, Seems to me that w/o a width on the content you are adding with nav li:hover::after, is... well... after the which is the only place you have a width declared (that I saw). Or am I not thinking about :after correctly? HTH On Wed, Sep 26, 2012 at 10:59 PM, Dave Solko wrote: > I'm stuck