Hi,
I think the easiest way based on what you already have is to put the paragraphs with the image/links first, then the header, then the text paragraphs. Then, add display: inline; to the style for H3
Your code seems quite mixed up at the moment so might be best to tidy that up first.
G
Hi, you can edit the way tags are formatted in the /root/wp-includes/category-template.php file
On my WP 3.2.1 this is line 1124
I’ve removed the anchor tag formatting so that tags appear as flat text and then appended them to the meta keywords on my site here http://garyhawkins.net using the codex
<?php the_tags( '',', ','' ); ?>
the code change I’ve made is this
/* $term_links[] = '<a href="' . $link . '" rel="tag">' . $term->name . '</a>';
Commenting out Tag Links to make tags fixed text
*/
$term_links[] = $term->name;
Hope this helps 🙂
Gary