I'm currently facing a challenge with the main menu on my website.
Occasionally, about 1 out of every 10 times, the menu fails to load correctly.
Please see the images below for comparison!
This is how the menu is intended to appear:
...and this is how the menu actually appears at times:
ul.menu {
font-size: 1.21em;
color: #333333;
padding: 0;
margin: 0;
padding-top: 29px;
height: 100%;
font-weight: 600;
width: auto;
float: right;
}
li.menu {
list-style-type: none;
padding-left: 26px;
text-decoration: none;
width: auto;
float: left;
}
li:hover.menu {
text-decoration: underline;
}
HTML
<ul class="menu">
<li class="menu"><a href="page_1.html" class="menu">PAGE 1</a></li>
<li class="menu"><a href="page_2.html" class="menu">PAGE 2</a></li>
<li class="menu"><a href="page_3.html" class="menu">PAGE 3</a></li>
</ul>