You have some messed up CSS. In your CSS Inserts you have this code
HTML Code:
div .category-fiere h1 a:link, a:active {
background-color: #FFFFFF;
color: #7B167F;
display: block;
font-weight: normal;
padding: 2px;
}
There are a couple problems with this.
1) there should be no space vetween the 'div' and the '.category-fiere'
2) putting in the ', a:active' says "Apply this to
all active links. what you probably wanted is
HTML Code:
div.category-fiere h1 a:link,
div.category-fiere h1 a:active {
background-color: #FFFFFF;
color: #7B167F;
display: block;
font-weight: normal;
padding: 2px;
}