My current project involves creating a simple web page template using HTML/CSS. I followed a tutorial to implement the navigation code.
- However, at 769px, the layout breaks, causing the page to not be full width and hidden. Here is what happens:
Here's a Screenshot: https://i.sstatic.net/jwymU.jpg
I've thoroughly inspected the navigation code but can't seem to pinpoint the issue. Can someone help me identify the problem specifically at 769px?
$("#toggle").click(function() {
$(this).toggleClass('on');
$("#resize").toggleClass("active");
});
html {
font-size: 10px;
font-family: 'Courier New', 'Courier', 'monospace';
}
...
* Other CSS and HTML code *
...