Currently, I am utilizing Wordpress to develop my website (www.codedgames.com) and the theme I have chosen adds an underline to one of its lists but not the others. I am looking to eliminate the underlines from the "Recent blog posts" widget in the footer using CSS. Since I am not an expert in CSS or HTML, I am unsure of how to resolve this issue. Any assistance on this matter would be highly valued. Below is the HTML code associated with the list:
<div id="footer_two" class="span4">
<aside id="recent-posts-3" class="widget widget_recent_entries">
<h3 class="widget-title">Recent Blog Posts</h3> <ul>
<li class="">
<a href="http://codedgames.com/moto-360-on-iphone-review/">Moto 360 on iPhone Review</a>
</li>
<li class="">
<a href="http://codedgames.com/how-good-is-tgt/">How Good is TGT?</a>
</li>
<li class="">
<a href="http://codedgames.com/dr-boom-used-to-suck-theory/">Dr. Boom Used to Suck – Card Theory</a>
</li>
<li class="">
<a href="http://codedgames.com/how-to-become-a-rocket-league-pro/">How to Become a Rocket League Pro!</a>
</li>
<li class="">
<a href="http://codedgames.com/how-to-start-a-twitch-channel/">How to Start a Twitch Channel in 6 Minutes!</a>
</li>
</ul>
</aside>
</div>