Can’t get sidebar mod right, adding blogroll
-
I switched to the Theme PDawn 1.0.
But it doesn’t come with the link section in the sidebar.
So, since I don’t understand php enough to write in the mod myself. I grabbed some of the code from the default theme sidebar.php file and pasted it in.<?php wp_list_bookmarks(); ?>
Well, it sort of worked.
I am getting the links to show, but I’m also getting the text “Blogroll”. But it doesn’t fit with the theme. The font is different size, color and there isn’t an underline separating it from that which is below it.I was able to add the correctly formatted “Blogroll” text,
<h3><?php _e(‘Blog roll’); ?></h3>
but I can’t get rid of the other text. I can’t find where it is in the code. Unless it’s part of the above php statement.
If I embed the php statement into the heading,
<h3><?php _e(‘Blog roll’); ?> <?php wp_list_bookmarks(); ?> </h3>
the unwanted blogroll text becomes transparent, but there is a huge spacing where the text is still present. (I know it’s there because I can highlight it with the cursor to make it show up)
Any help would be appreciated.
The topic ‘Can’t get sidebar mod right, adding blogroll’ is closed to new replies.