Dear Kyle,
somehow i solved the issues myself. this is what i did
1. Linkcolor was quite obvious
i just had to add a color for the a tag to the costume css (quite easy)
a {
color: #b90000;
transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
}
2. @fontface
I had to add !important at the end of the font-family to make @fontface work.
@font-face {
font-family: ‘din’;
src: url(‘fonts/din-light-webfont.eot’);
src: url(‘fonts/din-light-webfont.eot?#iefix’) format(’embedded-opentype’),
url(‘fonts/din-light-webfont.woff’) format(‘woff’),
url(‘fonts/din-light-webfont.ttf’) format(‘truetype’),
url(‘fonts/din-light-webfont.svg#dinprolight’) format(‘svg’);
font-weight: normal;
font-style: normal;
}
body,h1,h2,h3,h4, h5, h6 {
font-family: din, Helvetica, Arial, Tahoma, sans-serif!important;
}