It works in Opera, new FF, chrome, and IE. However the background doesn't stretch properly in FF 3.6, and for whatever reason the footer isn't properly being colored and the margin-top isn't working correctly.
As the title says, it is only the start of the site, so only the index is on right now. However, it is working as intended elsewhere.
Edit: Im looking at it using dev tools in chrome, and it isn't using or even showing that I added hsla background below the rgba. Not sure what that's about either.
Will do. I just figured I should get into the habit of hsla and rgba, for when the time comes when most browsers will support it. But yeah, why isn't the footer working is what I'm after.
And using rgba on box shadow would be how? -moz-box-shadow: 2px 3px 4px #rgba(xxx,xxx,xxx,x.x);?
I was using Adobe BrowserLab, I don't actually have FF 3.6 readily available. You could set a solid fallback color (#eee) for it if you really need to. I wouldn't worry about it too much though.
I prefer using hsla, it's more intuitive. You would write it out like so:
Well, its the same colors as all my other sections of the site, its the only one not working, and only in 3.6 (and dreamweaver). But it does have a fallback background image. So really kinda stumped on it.
Edit: I got it working by making it a div with an id of footer, and just swaped some stuff around. HOWEVER, why wouldn't this work normally? I have the html5shim in place. Which I just realized is for IE lt 9... Anyway to have this for FF 3.6 also? Or will I be needing a display:block in there
Edit2: Sure enough it works with the reset, but I was hoping I could get away with it without one. Seems the shim is pointless if the reset is needed anyway?
As far as I'm aware the shim is for IE lt 9 only. If they aren't supporting FF 3.6 there is probably a good reason for it. I would say most FF users are using 4 or 5 now.
As the title says, it is only the start of the site, so only the index is on right now. However, it is working as intended elsewhere.
Site hosted on my college server account:
http://people.ysu.edu/~jtpenezich/#
Edit: Im looking at it using dev tools in chrome, and it isn't using or even showing that I added hsla background below the rgba. Not sure what that's about either.
A couple of pointers; use either rgba or hsla, not both, and use rgba/hsla on your box shadow. It will look much nicer.
And using rgba on box shadow would be how? -moz-box-shadow: 2px 3px 4px #rgba(xxx,xxx,xxx,x.x);?
I prefer using hsla, it's more intuitive. You would write it out like so:
Edit: I got it working by making it a div with an id of footer, and just swaped some stuff around. HOWEVER, why wouldn't this work normally? I have the html5shim in place. Which I just realized is for IE lt 9... Anyway to have this for FF 3.6 also? Or will I be needing a display:block in there
Edit2: Sure enough it works with the reset, but I was hoping I could get away with it without one. Seems the shim is pointless if the reset is needed anyway?
You prob should mark this as solved now.