projects
/
WP-Themes
/
finewinejourneys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c21267c
)
Move wp_footer call to fix off-canvas display issue
author
Laury GvR
<laury@gaslightmedia.com>
Tue, 5 Nov 2019 14:54:18 +0000
(09:54 -0500)
committer
Laury GvR
<laury@gaslightmedia.com>
Tue, 5 Nov 2019 14:54:18 +0000
(09:54 -0500)
Wp_footer was called one element too deeply causing the off-canvas
menu to display incorrectly.
footer.php
patch
|
blob
|
history
diff --git
a/footer.php
b/footer.php
index
9f0cb08
..
a88e10b
100644
(file)
--- a/
footer.php
+++ b/
footer.php
@@
-31,10
+31,10
@@
<span class="bullet"> • </span>
<span> All Rights Reserved.</span>
</div>
- <a class="exit-off-canvas"></a>
</div><!--/#page-wrapper-->
+ <a class="exit-off-canvas"></a>
</div><!--End of inner-wrap-->
</div><!--End of off-canvas-->
- <?php wp_footer();?>
</body>
+ <?php wp_footer();?>
</html>