Hi,
I am trying to use the @font- face rule to change the font of my menu text. Here is the CSS I defined in the global stylesheet:
@font-face {
font-family: 'BebasRegular', Arial;
src: url('bebas___-webfont.eot');
src: local('?'), url('bebas___-webfont.woff') format('woff'), url('bebas___-webfont.ttf') format('truetype'), url('bebas___-webfont.svg#webfontdr2M6MXL') format('svg');
font-weight: normal;
font-style: normal;
}
For my body text and the rest I did this:
body{
background:url(images/bg.gif) repeat-x #e9e9e9 fixed;
font-family:Arial, Helvetica, sans-serif;
}
For some reason the @font-face declaration changes all text on the page to the dont.
Has this happened before/ can anyone help me out please?