User288213138 posted
Hi oneillj,
You can debug through F12 to find out where to render the problem.
There is a link here you can use F12 Developer Toolbar by reading it. https://www.c-sharpcorner.com/UploadFile/francissvk/f12-developer-toolbar-good-rescuer/
You can easily navigate the particular DOM elements by clicking on it on the Brower so that you can easily spot the respective "piece of markup" for that element in the whole page. This facilitates easily fixing the issues related to design.
And please check if there is a problem with your external stylesheet reference.
Here are the steps to how to reference css:
1.Right Click on your website/wepapplication in solution explorer.
2.Click on Add->New Item, Select "Style Sheet" Now a css file is added to your solution.
3.Write your CSS in this "StyleSheet.css" and Save.
4.Include the StyleSheet.css file in your aspx page inside tag.
<head runat="server">
<title>Home</title>
<link rel="stylesheet" type="text/css" href="StyleSheet.css" />
</head>
If you haven't solved your problem yet, please post your code.
Best Regard,
Sam