wordpress help needed

Discussion in 'WordPress' started by crazyryan, Dec 19, 2006.

  1. #1
    hey, I am coding a wordpress template for the first time, i'm working on the mainpage at the moment and so far I have come up with this:
    http://crazyryan.net/

    butttttt, the little bullet point / list things aren't supposed to be on the template, they are added automatically by the script, how can i edit them out, thanks.
     
    crazyryan, Dec 19, 2006 IP
  2. Richie_Ni

    Richie_Ni Illustrious Member

    Messages:
    10,721
    Likes Received:
    1,175
    Best Answers:
    0
    Trophy Points:
    410
    #2
    Nice theme!
    I think you can edit it in the sidebar.php but I'm not sure .
     
    Richie_Ni, Dec 19, 2006 IP
  3. crazyryan

    crazyryan Well-Known Member

    Messages:
    3,087
    Likes Received:
    165
    Best Answers:
    0
    Trophy Points:
    175
    #3
    Nope, I don't think you can, because I just added in <? list_links() ?> or whatever it is to show the blogroll and it came out like that.

    EDIT: What I have now will do, http://crazyryan.net/wp-admin/link-categories.php and also list-style-type: none helped me fix it a bit.
     
    crazyryan, Dec 19, 2006 IP
  4. krakjoe

    krakjoe Well-Known Member

    Messages:
    1,795
    Likes Received:
    141
    Best Answers:
    0
    Trophy Points:
    135
    #4
    krakjoe, Dec 19, 2006 IP
  5. Bhartzer

    Bhartzer Peon

    Messages:
    65
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    In the sidebar.php there should be a < ul > tag. Remove the ul and the /ul as well as the li and /li items.
     
    Bhartzer, Dec 19, 2006 IP
  6. krakjoe

    krakjoe Well-Known Member

    Messages:
    1,795
    Likes Received:
    141
    Best Answers:
    0
    Trophy Points:
    135
    #6
    or use

    ul
    {
    list-style:none;
    margin:0px;
    padding:0px;
    }

    to make them look like just normal links, and that does work I tried it....
     
    krakjoe, Dec 19, 2006 IP
  7. cynovatron

    cynovatron Peon

    Messages:
    39
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Its an issue with the CSS... i would guess the list_links() already churns out the <li>, and there is nothing you can do to control that... use CSS to hide the buttons :)
     
    cynovatron, Dec 20, 2006 IP