This particular Angular 8 MVC C# application has been giving me a run for my money. I find myself caught in a cycle of fixing one issue only to have another one pop up in its place.
Within the css file, I am setting
*,
html,
body
{
font-size: 12px;
font-weight: 400;
}
With this setup, the menu decides to take a stroll to the right side of the page, completely out of sight. Refer to Image 1 https://i.sstatic.net/qDVgH.png
*,
html,
body
{
padding-right: 1px;
font-size: 12px;
font-weight: 400;
}
In an attempt to resolve the previous issue, I added some padding on the right side so the navigation links wouldn't stray off course. Unfortunately, this created an awkward gap between the top menus and these nav menus. Check out Image 2https://i.sstatic.net/bdEpN.png I'm at a loss on how to eliminate this unwanted space
If you have any suggestions or alternative solutions, please lend me your expertise.