Skip to content
Snippets Groups Projects
Commit b2d3ee21 authored by Michael Drury's avatar Michael Drury
Browse files

made hover work

parent e383b443
Branches
No related tags found
No related merge requests found
......@@ -29,10 +29,13 @@
<div id="page-container">
<div class = "header">
<img class = "header_img" onmouseover="{{ url_for('static', filename='images/dark_logo_orange.png') }'" onmouseout="{{ url_for('static', filename='images/dark_logo.png') }}" src = "{{ url_for('static', filename='images/dark_logo.png') }}" alt="logo image"/>
</div>
<div class="header">
<img class="header_img"
src="{{ url_for('static', filename='images/dark_logo.png') }}"
onmouseover="this.src='{{ url_for('static', filename='images/dark_logo_orange.png') }}'"
onmouseout="this.src='{{ url_for('static', filename='images/dark_logo.png') }}'"
alt="logo image" />
</div>
<ul class = "navbar">
<li><div class = "navbar_box_home"><a class = "navbar_item" href="{{ url_for('home') }}">Home</a></div></li>
<li><div class = "navbar_box_home"><a class = "navbar_item" href="{{ url_for('shopping') }}">Shopping</a></div></li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment