• Hi

    My blog is at https://www.jayz.co.za

    In my sidebar I had this code:

    <?php get_links('-1', '<li>', '</li>', '', FALSE, 'id', FALSE, FALSE, -1, FALSE); ?>

    The above code displayed all the blogroll links together, irrespective of category. I did not want them all grouped together. But the nice thing was that each link had a little icon next to it.

    I wanted to have 3 different link categories. I got this right, using the following code:

    <?php wp_get_linksbyname('Blogroll','orderby=name&show_description=0&show_updated=1') ?>

    The above code shows the general Blogroll links, but I have 3 more categories – Clients, Partners, and Social Network.

    This is all as I want it, but next to each link I don’t have that little icon. I’ve tried several alterations of the code but I can’t seem to get it right. Please help.

    Thanks

    Jamaal

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m having a similar issue, although I get no icon for Meta or Archives widgets either — zero360music.com

    I found one fix, in style.css, I had:

    /*blogroll */
    ul.list-blogroll li{
    	background: url(images/mini-blogroll.gif) no-repeat !important;
    	padding-left: 16px !important;

    and changed to

    /*blogroll */
    ul.list-blogroll li, li.widget_links li{
    	background: url(images/mini-blogroll.gif) no-repeat !important;
    	padding-left: 16px !important;

    Still scratching my head over some of the other icons… like Archives and Login, etc.

    Hope this helps!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Links (Blogroll) Icon Missing’ is closed to new replies.