First thing to look at is your code.
CODE
<div id="gamma">
<div id="gamma-inner">
<div class="widget-sanae-info widget">
<div>
<h3 class="widget-header">
About Sanae
</div>
<div class="widget-content">
<p>I'm an illustrator and crafty mom and I stay up way too late making stuff. For more info, please go to <a href="http://www.sanaeishida.com">my website</a></p>
</div>
</div>
You are missing closing divs (5 opening, 3 cloing) and a h3, try this and see what happens
CODE
<div id="gamma">
<div id="gamma-inner">
<div class="widget-sanae-info widget">
<div>
<h3 class="widget-header">About Sanae</h3>
</div>
<div class="widget-content">
<p>I'm an illustrator and crafty mom and I stay up way too late making stuff. For more info, please go to <a href="http://www.sanaeishida.com">my website</a></p>
</div>
</div>
</div>
</div>