I was able to add the following to my stylesheet (using Zen Min theme) without any problems. It worked right away. I’m also using an added links page to view all links.
If you are using “li” in your before and after found on your Link Categories page, add this anywhere in your stylesheet:
li {
list-style: none;
}
(this is documented elsewhere in support, but it may be useful to see it here) To add a custom links page, I created a links.php file in a text editor with this content, uploaded it to my theme dir and created a new page called “Links”:
<?php
/*
Template Name: Links
*/
?>
<?php get_header(); ?>
<?php get_links_list(‘id’); ?>
<?php get_footer(); ?>
My footer calls my sidebar, but yours probably doesn’t. Add ‘<?php get_sidebar(); ?>’ before or after the get_links_list command (location of sidebar call depends on your theme – try both ways til it works) ??
brockangelo.com/links