The answer to c is underneath. You need to add this code in your stylesheet. Also when you put the picture in, you need to align it when using the photo editor, you will see place to align the images.
copy the following code into your stylesheet.
.aligncenter,
div.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.alignleft {
float: left;
}
.alignright {
float: right;
}
.wp-caption {
border: 1px solid #ddd;
text-align: center;
background-color: #f3f3f3;
padding-top: 4px;
margin: 10px;
/* optional rounded corners for browsers that support it */
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.wp-caption img {
margin: 0;
padding: 0;
border: 0 none;
}
.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
padding: 0 4px 5px;
margin: 0;
}
as far as B, I haven't figured that out either.
the answer to A is in your header.php file.
First make a contact page. then get the url.
then on your header php file, look for the ul id=nav . this is what mine looks like.
<ul id="nav">
<li><a <?php if (is_home()) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>">Home</a></li>
<li><a href="http://soxanddawgs.com/about-us/">About</a></li>
<li><a href="http://soxanddawgs.com/contact-us/">Contact</a></li>
<li><a href="http://soxanddawgs.com/uconn-womens-basketball-schedule/">UConn Women's Basketball 2008-09 Schedule</a></li>
<li><a href="http://soxanddawgs.com/2008-new-england-patriots-schedule/">2008 Patriots Schedule</a></li>
<li class="rss"><a href="<?php bloginfo('rss2_url'); ?>">RSS</a></li>
</ul>
You'll see where I changed my Front page to home and added different pages as well.
To answer your RSS button question, the answer is yes. In your cutline folder, there is an images folder. In the images folder is this file icon_rss.gif. What I would do is this. save the original one to your desktop and then upload a new one using the same filename (icon_rss.gif). That should alleviate that problem.
If you have any questions or want to look at my navigation head to my site http://soxanddawgs.com and if you need more help feel free to email me through my contact page.