My issue lies with a master template in aspx, from which I generate other aspx pages. In this master template, I have referenced a CSS style sheet. Strangely, the background image and font face that I had set up are no longer displaying on any of the aspx pages created from the master template.
I am struggling to understand why they are not showing. Interestingly, in Visual Studio, the background displays just fine.
Take a look at my project directory layout here:
https://i.sstatic.net/bp2uw.png
The stylesheet is referenced for all the aspx pages within the base Cafe directory AND the Aspx files in the Secure folder like this:
<link href="Styles/Coffee.css" rel="stylesheet" media="screen" />
<link href="../Styles/Coffee.css" rel="stylesheet" media="screen" />
So, some elements do change based on the style sheet, indicating that it has been properly referenced.
You can find the code in the CSS file here:
Here is the comparison between the page's output in both Visual Studio and the browser:
https://i.sstatic.net/GdyIH.jpg
Previously, everything was working perfectly fine - the labels and text on my aspx page displayed with the correct font face, and the background appeared without issues in both IE and FF. Now, I'm unsure what has caused this sudden change.