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.
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.
I think the correct css is ul { list-style:none; } put that inside http://crazyryan.net/wp-content/themes/ryans/style.css I'm no designer.....
In the sidebar.php there should be a < ul > tag. Remove the ul and the /ul as well as the li and /li items.
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....
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