There are a couple of problems with your HTML in the about me section. I don’t know if that is in the theme or what you entered.
<h3>About Me</h3>
<ul class=”list3″>
[tried to show the code here, but it didn’t work. Sorry.]
I am a blogger and this is my welcome text for all the readers. You can change this text to whatever you want.
I am a blogger and this is my welcome text for all the readers. You can change this text to whatever you want.
The UL tag says you are starting a list, but each list item need to be surrounded in LI tags. Yours has none.
You use BR tags to make space. I don’t know if this is causing the text to be formated to the width it is instead of the width of the column, but I’d try wrapping it in a <p></p> instead.
Those may help
Ron
[sig moderated]
I just did this and there are a couple of things to do.
For the navigation, instead of using the tag wp_list_pages to get a list of pages, use wp_list_categories to get categories. Then format it like you need to for your markup.
To edit how the category list page looks edit the theme file category.php.
Those should get you going in the right direction.
Ron
[sig moderated]