Thanks for the help.
Ok… so I did the following and it caused a couple problems.
Let me give you the full link definitions I had previously:
a:link { text-decoration: none; color: #fff; background: #000000; }
a:active { text-decoration: none; }
a:visited { text-decoration: none; color: #fff; background: #000000; }
a:hover { text-decoration: none; color: #fff; background: #000000; }
With this code the index side was fine.
So I then changed it to:
#index
a:link { text-decoration: none; color: #fff; background: #000000; }
a:active { text-decoration: none; }
a:visited { text-decoration: none; color: #fff; background: #000000; }
a:hover { text-decoration: none; color: #434343; background: #000000; }
#exhibit
a:link { text-decoration: none; color: #000000; background: #fff; }
a:active { text-decoration: none; }
a:visited { text-decoration: none; color: #000000; background: #ffff; }
a:hover { text-decoration: none; color: #434343; background: #ffff; }
and now there are problems. On the index, the links were changed even though the index portion of the code were identical to the "global" code before.
Here is a screenshot of the before and after:
jeffsingerphotography.com/temp/…
jeffsingerphotography.com/temp/…
As you can see the index side link background changed to black, some links (I guess unvisited) changed to blue (not sure where that blue is even coming from), the links also changed to underlined (which you can't see since it's black on black).
What happened?