As I work on developing my website, I have encountered a small issue with the top navigation bar. It functions perfectly at a certain screen resolution, but when I adjust the browser window or view the site on my iPad, the navigation bar disappears. I'm struggling to identify what might be wrong with the CSS code for the navigation menu.
The website has been uploaded to a testing server:
Below are the HTML and CSS codes in question:
<section id="start" class="start">
<div id="section-nav" class="section-nav">
<div class="container">
<ul class="nav">
<li><a href="#start" id="link-start">Home</a></li>
<li><a href="#process" id="link-process">Product&Services</a></li>
<li><a href="#portfolio" id="link-portfolio">Work</a></li>
<li><a href="#team" id="link-company">Company</a></li>
<li><a href="#contact" id="link-contact">Contact</a></li>
<li><a href="fn/index.html">Fi</a> | <a href="index.html">En</a></li>
</ul>
</div>
</div>
Please check the CSS code as well to ensure everything is correctly set up. You may want to inspect the elements on the browser to see if any issues are flagged there. Thank you!