I have implemented a unique font for BAR-CODE in my web application. It works perfectly fine on all pages that are using a single master page. However, when I navigate to a page that does not use the master page, the font does not display properly. This issue only occurs on the web server, as it works correctly on localhost. In the head section of the master page, I have included the following code:
<link href="App_Themes/Theme1/Mysheet.css" rel="stylesheet" />
The CSS file (Mysheet.css) contains the following styles related to the font:
@font-face {
font-family : IDAutomationHC39M;
src : url(IDAutomationHC39M.ttf);
}
.BarcodeText {
family : IDAutomationHC39M;
font-size:large;
}