Solved
Issue Calling A Custom Font
I am building out a guided landing page, trying to pull in a custom font to overwrite the entire page. I have uploaded the font into Design Studio. I am calling the font on the page:
<style type="text/css">
@font-face {
font-family: "Metronic Pro Black";
src: url('https://go.autoshopsolutions.com/rs/180-DGD-014/images/Mostardesign - MetronicProBlack.otf') format("otf")
}
body {
font-family: 'Metronic Pro Black', sans-serif !important;
}
</style>I have also added it to my CSS I am calling:
<link rel="stylesheet" href="https://go.autoshopsolutions.com/rs/180-DGD-014/images/tire-style1.css">
body{
font-family: 'Metronic Pro Black', sans-serif;
font-size:12px;
line-height:18px;
color:#000000;
font-weight:normal;
}I am not sure if I am calling it wrong or some other issue is causing it not to pull. Any insight would be great!