I'm guessing there is a float or display specified for lists. Take a look at the CSS. Also if you have a link to a live site we will be able to help more.
Looking at the source of the (live) front page and single page is appears on the front page it is showing displaying <p>item 1 item 2 item 3</p> rather than as a list.
Is it set to only display the excerpt on the front page? can you toggle this option to see if you can tell if this is the source of the problem?
On the front page, the content is written by using this code:
<?php wip_blog_printcontent(); ?>
This seems to strip the content from some tags, if you look in the source code of your page you'll see that there's not even any UL or LI tags anymore.
Not sure if this a plugin or part of your theme, but if you replace it with:
<?php the_excerpt(); ?>
or:
<?php the_content(); ?>
(like it is in your single post template), you should be fine.
(BTW, the blue font on black background is a little hard on the eyes)
When I post to the blog, the list button not not make the text into a list on the main blog page. It instead puts it in one line. Like so...
item 1 item 2 item 3
When i look at the html editor it says that it is indeed using html to specify a list.
When I go to the "single" page it displays it correctly like so...
item 1
item 2
item 3
So I am trying to figure out what makes it display differently on those two pages. Here is the code.
BLOG TEMPLATE
SINGLE POST PAGE
I would be grateful for any info to point me in the right direction.
Here is the link http://wp-testing.bopedesign.com/?page_id=104
<p>item 1 item 2 item 3</p>rather than as a list.Is it set to only display the excerpt on the front page? can you toggle this option to see if you can tell if this is the source of the problem?
This seems to strip the content from some tags, if you look in the source code of your page you'll see that there's not even any UL or LI tags anymore.
Not sure if this a plugin or part of your theme, but if you replace it with:
or:
(like it is in your single post template), you should be fine.
(BTW, the blue font on black background is a little hard on the eyes)