hungrywriter
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I can’t get rid of a Bullet Point in a themeThanks for the replies! I got it to work.
Forum: Fixing WordPress
In reply to: I can’t get rid of a Bullet Point in a themeWhere is that url… line. I found a few in the stylesheet but not in the above code.
Forum: Fixing WordPress
In reply to: I can’t get rid of a Bullet Point in a themeI am using the original copy of the theme.
here’s the sidebar code:
<?php wp_list_pages('title_li=<h2>' . __('Pages') . '</h2>' ); ?><h2><?php _e('Categories:'); ?></h2>
<ul><?php wp_list_cats('optioncount=1'); ?></ul><h2><label for="s"><?php _e('Search:'); ?></label></h2>
<ul>
<li>
<form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div style="text-align:center">
<p><input type="text" name="s" id="s" size="15" /></p>
<p><input type="submit" name="submit" value="<?php _e('Search'); ?>" /></p>
</div>
</form>
</li>
</ul>
<h2><?php _e('Monthly:'); ?></h2>
<ul><?php wp_get_archives('type=monthly&show_post_count=true'); ?></ul><h2><?php _e('RSS Feeds:'); ?></h2>
<ul>
<li>
<a title="RSS2 Feed for Posts" href="<?php bloginfo('rss2_url'); ?>">Posts</a> | <a title="RSS2 Feed for Comments" href="<?php bloginfo('comments_rss2_url'); ?>">Comments</a></li>
</ul>Forum: Fixing WordPress
In reply to: I can’t get rid of a Bullet Point in a themeI can find H2 when I view source direct from the website but can’t find it on any of the files in the wp-content directory for this theme.
Forum: Fixing WordPress
In reply to: I can’t get rid of a Bullet Point in a themeI found this in the css:
#content ul li {
background: url(‘img/bullet.gif’) no-repeat 0 7px;
padding-left: 1.5em;What do about that?
Where do I find
- <h2>Pages</h2>