just a quick question about Blueprint CSS. I have a three-column template, with spans 5, 14 and 5-last respectively. The first two columns work wonderfully, the content functions properly. However, in the 3rd and "last" column, the content will not display properly. I can get the images and text to move and position properly, but my links won't act properly upon hovering, my radio button's won't select, and none of the text is selectable. It is as if there is no column there at all. I know this is probably a simple fix, but I appreciate the help. See code below:
<div class="span-5 last">
<img src="images/hrline.png" width="178" height="2" class="hrline">
<p class="right">Welcome To Home!</p>
<img src="images/hrline.png" width="178" height="2" class="hrline">
<p class="intro">SOME sample text</p>
<ul class="linkintro">
<li><a href="#">- item1,</a></li>
<li><a href="#">- item2 </a><i>or</i></li>
<li><a href="#">- item3,</a></li>
</ul>
<p class="intro">those updates will appear in the middle of this page. If this is your first time here, click on one of the links above to get started. Enjoy!</p>
<br />
<img src="images/hrline.png" width="178" height="2" class="hrline">
<p class="right2">Featured Poll</p>
<img src="images/hrline.png" width="178" height="2" class="hrline">
<input type="radio" name="Poll1">
"Interpersonal"
</div>
Thank you for any help!