• I have been designing a site for my sister and had a question that probably has a simple answer. I checked the Wiki and could not find it. When I moved the Category link from it’s default position, it appears with a bullet, which throws off the positioning. Here is the site:
    https://www.projectech.net/misty
    I know that the original code to get rid of the bullet was “list-style: none;” in the ul.post-meta, but when I try it under a different name, it doesn’t seem to work.
    Thanks for the help!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hmm..
    would #content ul { list-style: none; } work? ??

    Thread Starter skankybeans

    (@skankybeans)

    Well, it got rid of the bullet visually, but it’s still indented and bumped up another line. I would like to get the “Categories, Print, and Comments” all on one line.
    Thanks

    I can see this in source:
    in General”>General

    I think something in index.php is working against you here. Can you post the content of that section that you want to line up ?

    Ack
    in General">General

    Scrub that, add this to the css:
    .bottomlinks ul {
    display: inline;
    }
    .bottomlinks ul a {
    display: inline;
    }
    .bottomlinks ul li {
    display: inline;
    font-size: 10px;
    }
    .bottomlinks a {
    display: inline;
    font-size: 10px;
    }
    If the letters go too small, increase the px in both.
    That’s probably a little overkill, but it’s early, and I’ve not had enough coffee yet !

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Category with bullet???’ is closed to new replies.