There's style.css which contains this on the top line:
p{color:#0000be;font-size:16px;text-align:center;font:Arial;}
then there's the blog Page Template which contains this:
<?php /*
template name:blog
*/?>
<?php get_header(); ?>
<body>
<div id="wrapper">
<div id="fbtop">
<a href="<?php bloginfo('url'); ?>">
<img src="<?php bloginfo('url'); ?>/images/blogbanner.jpg" alt="American Legal Forums Brought to you by Colorado Process Servers" />
</a>
</div>
<!-- BEGIN MAIN CONTENT -->
<div id="bodycontent"><a name="TOP" id="TOP"> </a>
<?php $original_query = $query_string; query_posts('&cat=1'); ?>
<?php if(have_posts()): ?><?php while(have_posts()):the_post();?>
<div class="post" id="post-<?php the_ID(); ?>">
<p style="text-align:left;">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" ><?php the_title(); ?></a></p> <!-- title of the post as a link --><hr />
<?php the_content(); ?> <!-- adds the content to the post -->
</div> <!-- end entry class-->
</div><!-- end post class-->
<?php endwhile; ?>
<?php else: ?>
<div class="post">
<h2><?php _e('Not Found'); ?></h2>
</div>
<?php endif; ?> <!-- post loop -->
<?php wp_reset_query() ?>
</div>
<!-- END MAIN CONTENT -->
<?php get_footer(); ?>
See why I'm dizzy with this stuff? I'm between a rock and a hard place. I don't know the first thing about divs, tables or whatever, just very basic html, yet if I use VSD it seems like it cant do the things that php and divs, tables, whatever, can do in WordPress.
Melissa Rhiannon
OS Windows 10