Sorry.. the page with is 89 still shows the sidebar correctly as its coded above, but when i add the code for page 105, the sidebar content for page 105 does not show at all (89 still shows).
They are both actual pages. 105 is querying a category of posts via a panel in my interface (It is a theme from themify.me, and they give you an option to query certain categories within the page)
link to is_page89
https://angoragardens.org/angoragardens/about/
and is_page105
https://angoragardens.org/angoragardens/classes/schedule/
And here is my entire sidebar.php page
<aside id="sidebar">
<div style="height:120px">?</div>
<input type="text" onblur="if (this.value == '') {this.value = 'Search...';}" onfocus="if (this.value == 'Search...') {this.value = '';}" id="s" name="s" value="Search...">
<div style="height:5px">?</div>
<?php if( is_page('89') ):?>
<h4 class="widgettitle">Donate to Angora Gardens</h4>
<a href="donate" style="margin-bottom:10px; color:#676767">Click Here >></a>
<h4 class="widgettitle">Hold Your Business or Social Event at Angora Gardens</h4>
<a href="event-venue" style="margin-bottom:10px; color:#676767">View Event Venue Page >></a>
<h4 class="widgettitle">View Upcoming Classes</h4>
<a href="#" style="margin-bottom:10px; color:#676767">Click Here >></a>
<h4 class="widgettitle">Take a Virtual Tour</h4>
<a href="#" style="margin-bottom:10px; color:#676767">Click Here >></a>
<h4 class="widgettitle">Learn More About Mon Yough Community Services</h4>
<a href="https://mycs.org" target="_blank" style="margin-bottom:10px; color:#676767">Click Here >></a>
<?php endif;?>
<?php if( is_page('105') ):?>
<h4 class="widgettitle">Have An Idea for a Class? Let us Know</h4>
<a href="contact" style="margin-bottom:10px; color:#676767">Click Here >></a>
<h4 class="widgettitle">Contact us to Hold a Private Class</h4>
<a href="contact" style="margin-bottom:10px; color:#676767">Click Here >></a>
<h4 class="widgettitle">Become an Instructor</h4>
<a href="contact" style="margin-bottom:10px; color:#676767">Click Here >></a>
<?php endif;?>
<div style="font-size:1.6em; font-color:#222; text-align:center; line-height:25px; background-color:#ececec; padding:12px; margin-top:25px; width:100%">Angora Gardens is open to the public Tues-Sat 9am to 5pm</div>
</aside>