My dropdown menu is misaligned and not centering on the page, even after multiple attempts to fix it using HTML and CSS only. I have refrained from using JavaScript or JQuery for this issue.
CSS Code:
<style type="text/css">
/* STYLING FOR DROPDOWN MENU */
#menu li {
color: #222222;
}
#mega {
list-style:none;
font-weight:bold;
}
...
/* END OF STYLESHEET */
h1 {
color:#858585;
font-size:14px;
}
h2{
color:#333333;
font-size:24px;
}
p {
color:#333333;
font-size:14px;
}
</style>
HTML Code:
<div class="navtop">
...
</div>
I appreciate any help with this issue! Thank you in advance :)