I am having really strange behavior on this page: annatype.com/… - the links in the menu and on this particular page should be styled so on hover they turn red, no underline. the content of the page lives inside a div with an ID of "indexpage" so i can style just this one page differently (when the site is live it will be the main index page.)
in the body of the site, for example, this page: annatype.com/… - there is a dotted underline to show it is a link, and on hover, both the line and the word turns red. this works fine. links on that index-placeholderpage are wildly inconsistent. some of the links do nothing on hover, some work fine. in the menu, 'news' and 'teaching' work fine, but 'index' and 'about' show nothing on hover.
the worst part of this is a different computer, running the same OS and version of Safari, none of the links do anything on hover. i have examined the code and it looks good to me, but i think maybe i am losing my mind. this is the CSS code for the links:
/* links styles only for the #index region */
#index a:link { text-decoration: none; color: #000; }
#index a:hover { text-decoration: none; color: #ff4747; }
#index a:active { text-decoration: none; color: #000; }
#index a:visited { text-decoration: none; color: #000;}
/* links styles only for the #exhibit region */
#exhibit a:link { text-decoration: none; color: #000; border-bottom: 1px dotted #b4b4b4; }
#exhibit a:hover { text-decoration: none; color: #ff4747; border-bottom: 1px solid #ff4747; }
#exhibit a:active { text-decoration: none; color: #000; }
#exhibit a:visited { text-decoration: none; color: #000; }
/* links styles only for the #indexpage region */
#indexpage a:link { text-decoration: none; color: #000; border: 0px}
#indexpage a:hover { text-decoration: none; color: #ff4747; }
#indexpage a:active { text-decoration: none; color: #000; }
#indexpage a:visited { text-decoration: none; color: #000; }
and this is a link to the stylesheet: annatype.com/ndxzsite/annatype/…
I am sure I am doing something wrong but I cannot figure out what it is. thanks for any help you can give me!
-mitch