Hmmm... just check something for me.
Change the CSS entires from
gal
to DEF like this:
Code:
a.gal:link {
text-decoration: none;
border-bottom: 1px dotted #016798;
color : #016798;
padding-bottom: 0px
}
a.gal:visited {
text-decoration: none;
border-bottom: 1px dotted #016798;
color : #016798; padding-bottom: 0px
}
a.gal:hover {
text-decoration: underline;
border-bottom: 0px dotted #F8BF24;
color : #016798; padding-bottom: 0px
}
to
Code:
a.DEF:link {
text-decoration: none;
border-bottom: 1px dotted #016798;
color : #016798;
padding-bottom: 0px
}
a.DEF:visited {
text-decoration: none;
border-bottom: 1px dotted #016798;
color : #016798; padding-bottom: 0px
}
a.DEF:hover {
text-decoration: underline;
border-bottom: 0px dotted #F8BF24;
color : #016798; padding-bottom: 0px
}
And let me know. I think I know what the problem is