• I installed wordpress ver 1.2.1 mingus for my class’ site and I noticed that when I made my first post when I modified the whole thing that the filed in category thing appears in a list form
    it sort of looks like
    Filed under:

      general

    Can anyone tell me how to change this … via css perhaps? or do I have to maniuplate a php document.
    I want it to look like
    filed under: General
    for a better look go visit my class site https://www.g2007.yunie.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • try this
    <?php _e("filed under:"); ?> <?php the_category(',') ?>
    notice the “,” between the parenthesis. This should do it. This basically makes it have no list.

    by the way this will be under your index.php file

    You have removed the css that would format it, and even if you hadn’t, you have removed the styling tags in index.php.
    You need them.
    The css:
    .meta {
    font-size: .75em;
    }
    .meta li, ul.post-meta li {
    display: inline;
    }
    .meta ul {
    display: inline;
    list-style: none;
    margin: 0;
    padding: 0;
    }
    .meta, .meta a {
    color: #808080;
    font-weight: normal;
    letter-spacing: 0;
    }
    Index.php
    <div class="meta"><?php _e("Filed under:"); ?> <?php the_category() ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(); ?></div>

    Thread Starter maesterkinoc

    (@maesterkinoc)

    Ah I se
    I just reuploaded the default index and edited the wp-layout.css
    That was stupid of me turned out to be alot simpler….

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Categiry list <UL> look’ is closed to new replies.