Assets in css dont link properly in pages other than home
Hello I have a small issue regarding my linking in my style.css
For example:
@font-face {
src: url('wp-content/themes/mytheme/fonts/font.ttf');
}
and
.div {
background: url('wp-content/themes/mytheme/images/img.png');
}
My home page works perfectly, assets link correctly but when I go to another page such as "about" the links are broken because it does this:
www.url.com/about/wp-content/themes/mytheme/images/img.png
Anyone know why this is happening?
Thanks