• How can I display the category of each post in the post without the bullet points?
    If that made sense.

Viewing 15 replies - 1 through 15 (of 31 total)
  • In your CSS file, fine the section for .meta ul. Change it to:
    .meta ul {
    display: inline;
    margin: 0;
    padding: 0;
    list-style: none;
    }

    Thread Starter Anonymous

    I tried that, and it didn’t work.

    Thread Starter Anonymous

    Might help to point out that the li tags are nested as in .meta ul ul li. Just hunt em down. It works. Believe us. Every day.

    Are you using the default wp-layout.css? If so, my previous code should work for the categories listed in the “Filed Under:” section, which I *think* is what you were asking about…If it’s not working, then we’ll need to look at your code to see what else might have changed…

    Thread Starter Anonymous

    This is the original anonymous again.
    I’m still having problems. I’ve gone through every CSS file I can think of (wp-layout.php, my skinned style sheet) and changed or added the list-style-type: none, and I’m still getting the bullets.
    If you need to look at my site, it’s here.
    https://iris.melampus.net/
    Try not to laugh, it’s still under construction.

    Thread Starter Anonymous

    Also, I have fiddled with wp-layout.php at some point, but I think it was probably just when I was trying to kill the bullets earlier.

    Thread Starter Anonymous

    can’t access your uri.

    Thread Starter Anonymous

    I’m assuming URI is URL… if it isn’t, I don’t know what you’re talking about. Sorry. x|
    Anyway. URL.
    The server’s been having problems recently. I don’t think everyone can see the website yet.

    I had a problem with that before too, anon, so I agree with others: use CSS to manipulate the bullets. It solved the problem. Look under .meta as tcervo said and that will change the way it looks. But if you’re using your own css then it’s probably a good idea to copy and paste from wp-layout.css and use same class name to achieve whatever you are trying to do.

    Thread Starter Anonymous

    URI is what a URL was before we went semantic.Its in the SML spec.
    We can’t assume all readers are on browsers.

    Thread Starter Anonymous

    I just tried putting this into my custom css:
    [code] .meta ul { display: inline; margin: 0; padding: 0; list-style: none;}
    .meta li { display: inline; margin: 0; padding: 0; list-style: none;}
    .meta ul li { display: inline; margin: 0; padding: 0; list-style: none;}
    .meta ul ul { display: inline; margin: 0; padding: 0; list-style: none;}
    .meta ul ul li { display: inline; margin: 0; padding: 0; list-style: none;}
    #menu ul { list-style-type: none; }
    #menu li { list-style-type: none; }
    #menu ul li { list-style-type: none; }
    #menu ul ul { list-style-type: none; }
    #menu ul ul li {list-style-type: none; }[/code]
    Still no effect.

    Thread Starter Anonymous

    Ignore the [code] tags. Sorry.
    I still have no real idea what the other anon is talking about, but... yeah.

    Thread Starter Anonymous

    Are you absolutely sure your index is hooked up to the css with the right call? It is a common error, believe us.

    Thread Starter Anonymous

    Plus try changing the rule to list-style: none (no need for the type here)

    Thread Starter Anonymous

    I tried getting rid of the -type. No effect.
    The CSS sheet seems to be affecting the rest of the page, so I’m assuming they’re connected.

Viewing 15 replies - 1 through 15 (of 31 total)
  • The topic ‘Category in Entry without bullets?’ is closed to new replies.