Word Press: how do I get the blogroll to display without bullets?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • czarina
    Webmaster Extraordinaire
    • Jul 2002
    • 10751

    #1

    Word Press: how do I get the blogroll to display without bullets?

    I'm trying to get it to display without bullets. Can anyone tell me which variable to change or how to do it?
    Thanx!
  • mrkris
    Confirmed User
    • May 2005
    • 2737

    #2
    That's not wordpress, it's the CSS for that theme.

    PHP-MySQL-Rails | ICQ: 342500546

    Comment

    • Chris
      Too lazy to set a custom title
      • May 2003
      • 27880

      #3
      whoa
      just loaded up that style sheet
      jesus christ that is alot of crap in that thing
      [email protected]

      Comment

      • bangman
        Confirmed User
        • Sep 2004
        • 5283

        #4
        Czarina,

        You need to do that in the CSS.
        When your Blogroll is published, the HTML that is generated puts the NAME of the Blogroll in an <h2> and the LINKS in the Blogroll in <li>'s.
        What you need to do is wrap the Blogroll in a div such as #sidebar (or if you have an existing one, just attach the sample style below to it)

        Sample Styling:
        #sidebar ul {
        list-style-position: outside;
        list-style: none;
        margin: 0px;
        padding-left: 1em;
        text-indent: -1em;
        }

        Contact me if you need help.
        - David Hall
        ICQ: 312744199

        Comment

        • czarina
          Webmaster Extraordinaire
          • Jul 2002
          • 10751

          #5
          thanx guys. Got it. Oof!!!

          Comment

          • czarina
            Webmaster Extraordinaire
            • Jul 2002
            • 10751

            #6
            and, thank you bangman... how come I didn't think of asking you directly, when you're the blog specialist?

            Comment

            Working...