Hello,
I am trying to make it so that the top menu item to the far right that reads “Reservation” is different color (#150d67) as default for all media queries on the following page: http://www.alaprovence.com/slideshow.html
Here is the page code:
<div class="top-nav s-12 l-10">
<ul class="chevron">
<li><a>Home</a></li>
<li><a>About Us</a>
<ul>
<li><a href="/about.html">Our Restaurant</a></li>
<li><a href="/press.html">Press</a></li>
</ul>
</li>
<li><a>Menus</a>
<ul>
<li><a>Lunch</a></li>
<li><a>Dinner</a></li>
<li><a>Dessert</a></li>
</ul>
</li>
<li><a href="/gallery.html">Gallery</a></li>
<li><a href="/location.html">Location</a></li>
<li><a href="/contact.html">Contact Us</a></li>
<li class="hide-l"><a>Reservations</a></li>
</ul>
</div>
<div class="reservation">
<div class="top-nav s-12 l-2">
<ul>
<li class="hide-s hide-m"><a>Reservations</a></li>
</ul>
</div>
</div>
</nav>
</div>
For the stylesheet, I’ve tried variations of: .reservation .top-nav li { background:#150d67; } and that's working for the full size version of the site, but I cannot get that menu item to default to blue on the responsive menu.
Any help would be appreciated.
Bookmarks