Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
|
The page doesn't seem to be loading for me at the moment, but I'll take a look again later. Feel free to post the code too, both html and css. Hopefully though, the link will work for me next time I check.
A couple of thoughts. I know it's seems obvious, but check to make sure you've got the everything spelled the same and you're using # for the id in the css instead of . as in a class. I've done that myself often enough.
You might also need to make the css more specific. So instead of just
div#yourid it might need to be
td div#yourid
or even
div#wrapper td div#yourid
Sometimes I've found that to help when all the css for an element wasn't working. Since nothing seems to be working on that div at the moment I'm thinking it's more of a specificty issue and that Safari just isn't applying the css at all.
|