Need help editing below the menu bar

I use updated Saratoga, and WD.

It’s been a while since I worked with it, but I need the file name I can use to edit my site just below the menu bar on the left. I’ve been searching for a few hours to no avail. Any help would be welcomed.

Rick Reynolds

www.MohawkValleyWeather.com

I think you are speaking of menubar.php

Try ‘flyout-menu.xml’, see if that works.

Maybe https://saratoga-weather.org/wxtemplates/menubar-config.php would be helpful?

Yes, editing flyout-menu.xml allows you to add additional links to the flyout menu on the site.

Adding stuff below that (and the theme options selection) means editing menubar.php itself. Look for

      </div><!-- end leftSidebar -->
</div><!-- end doNotPrint -->	
<!-- end of menubar -->

and put your stuff ABOVE those lines. Example

<p class="sideBarTitle" style="text-align:center">My Links</p>
<ul>
   <li><a href="http://some.site.com/" title="first site">Site 1</a></li>
   <li><a href="http://some.othersite.com/" title="second site">Site 2</a></li>
</ul>

      </div><!-- end leftSidebar -->
</div><!-- end doNotPrint -->	
<!-- end of menubar -->

Hope this helps…

menubar.php did the trick… Thanks!