• Resolved rusty2

    (@rusty2)


    Hi,

    I’m currently breaking down the default Kubrick template to see how it functions. I’ve managed to work out how to change (or remove) all the sidebar headings in sidebar.php, apart from the Blogroll heading.

    I found this solution in the forums.
    Try to replace…
    <?php wp_list_bookmarks(); ?>
    with this…
    <?php wp_list_bookmarks(‘categorize=0&title_li=’); ?>

    I replaced the line of coding in sidebar.php. This removes the heading ok, but screws up the layout (drops the bullet points and adds a line space in between the blogroll entries).

    Is this the best way to tackle it, or can anyone else suggest another fix, Thanks for your time.

    Rusty

Viewing 2 replies - 1 through 2 (of 2 total)
  • Look at the docs for wp_list_bookmarks and you’ll see how to format the list of bookmarks. You might also have to look into your style.css to adjust the formatting for the <li>‘s. Check the source of your page and see what kind of tags you might be missing that causes the layout problems.

    Thread Starter rusty2

    (@rusty2)

    Hi,

    Thanks for the advice.

    I put this in the CSS and seems to do the trick:

    #sidebar .linkcat h2 {
    display: none
    }

    It just targets the bloggroll header.

    Rusty

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing the Blogroll (TITLE ONLY) from the sidebar’ is closed to new replies.