Hello world! I'm having trouble removing the bullets and underline formatting from this site: http://www.dubadesign.com.
The theme is Carrington Text. The topics I've found seem to have solutions that include modifying the style.css, however this theme doesn't use that. I also cannot find any typical sidebar formatting in the theme files. Closest I've found is in the sidebar-default.php which has something like this:
'<div id="primary-sidebar">
<?php
$post = $orig_post;
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Primary Sidebar') ) {
?>
<div class="widget">
<h2 class="title"><?php _e('Search', 'carrington-text'); ?></h2>
<?php cfct_form('search'); ?>
</div><!--.widget-->
<div class="widget">
<h2 class="title"><?php _e('Pages', 'carrington-text'); ?></h2>
-
<?php wp_list_pages('title_li='); ?>
</div><!--.widget-->
<div class="widget">'
Any suggestions?