The MU forums have moved to WordPress.org

Trouble with Style Sheet over-ride (2 posts)

  1. helenw
    Member
    Posted 16 years ago #

    I am working on modifying a theme and have been able to rename some of the styles so our main site styles don't get messed up. The current problem I am faced with is bullets. I can't seem to figure out a way to get the bullets to not show. I am pretty sure the theme styles do not have a bullet but our styles do.

    Not sure if anyone has had this problem and found a solution but I am hoping so.

    This is the info from the styles and the sidebar (the place that has the bullets and I don't want them there) the theme name is PURE and if you look at it on wordpress you will see no bullets.

    -----
    -----

    .postmetadata ul, .postmetadata li {
    display: inline;
    list-style-type: none;
    list-style-image: none;
    }

    #sidebar ul, #sidebar ul ol {
    margin: 0;
    padding: 0;
    list-style: none;
    }

    #sidebar ul li {
    list-style: none;
    margin-bottom: 15px;
    color: #CC0033;
    }

    #sidebar ul p, #sidebar ul select {
    margin: 5px 0 8px;
    }

    #sidebar ul ul, #sidebar ul ol {
    margin: 5px 0 0 10px;
    }

    #sidebar ul ul ul, #sidebar ul ol {
    margin: 0 0 0 10px;
    }

    ol li, #sidebar ul ol li {
    list-style: decimal outside;
    }

    #sidebar ul ul li, #sidebar ul ol li {
    margin: 3px 0 0;
    padding: 0;
    }
    /* End Entry Lists */

    ----
    ----

    SIDEBAR CODE:

    </div>
    <div id="sidebarbg">
    <div id="sidebar2">
    <div id="sidebar">

      <?php if ( !function_exists('dynamic_sidebar')
      || !dynamic_sidebar() ) : ?>

    • <?php include (TEMPLATEPATH . '/searchform.php'); ?>
    • <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.

    • <h2>Author</h2>
      <p>A little something about you, the author. Nothing lengthy, just an overview.</p>
    • -->

    • <?php /* If this is a 404 page */ if (is_404()) { ?>
      <?php /* If this is a category archive */ } elseif (is_category()) { ?>
      <p>You are currently browsing the archives for the <?php single_cat_title(''); ?> category.</p>

      <?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
      <p>You are currently browsing the /"><?php echo bloginfo('name'); ?> weblog archives
      for the day <?php the_time('l, F jS, Y'); ?>.</p>

      <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
      <p>You are currently browsing the /"><?php echo bloginfo('name'); ?> weblog archives
      for <?php the_time('F, Y'); ?>.</p>

      <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
      <p>You are currently browsing the /"><?php echo bloginfo('name'); ?> weblog archives
      for the year <?php the_time('Y'); ?>.</p>

      <?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
      <p>You have searched the /"><?php echo bloginfo('name'); ?> weblog archives
      for '<?php the_search_query(); ?>'. If you are unable to find anything in these search results, you can try one of these links.</p>

      <?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
      <p>You are currently browsing the /"><?php echo bloginfo('name'); ?> weblog archives.</p>

      <?php } ?>

    • <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>

    • <h2>Archives</h2>
        <?php wp_get_archives('type=monthly'); ?>
    • <?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?>

      <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>

    • <h2>Recent posts</h2>
    • <?php wp_list_bookmarks(); ?>

    • <h2>Meta</h2>
        <?php wp_register(); ?>

      • <?php wp_loginout(); ?>
      • Valid XHTML
      • <?php wp_meta(); ?>

    • <?php } ?>
      <?php endif; ?>

    </div>
    </div>
    </div>

  2. helenw
    Member
    Posted 16 years ago #

    I fixed my problem!

    Helen

About this Topic