Step two. Now we have to find the area of code that is displaying the footer. In this case you can find easy because of the unique phrase 'We appreciate', so do a search for that phrase and you'll find it is in a '<div...' that looks like this
HTML Code:
<div class="post-footer"><a href="http://192.168.48.99/wordpress/?p=421#respond" class="comments-link" title="Comment on galleria test">We appreciate your sharing a comment here.</a> | Category: <a href="http://192.168.48.99/wordpress/?cat=1" title="View all posts in Uncategorized" rel="category">Uncategorized</a> | <a class="post-edit-link" href="http://192.168.48.99/wordpress/wp-admin/post.php?action=edit&post=421" title="Edit post">Edit this post</a></div>
with this you can find the CSS identifiers that are being used.
If you look at the part of the code that contains the 'We Appreciate' we find
HTML Code:
<a href="http://192.168.48.99/wordpress/?p=421#respond" class="comments-link" title="Comment on galleria test">We appreciate your sharing a comment here.</a>
so we know that it is in an <a> element and if we look closer, yiou will see 'class="comments-link"' so this is an <a> with a CSS class of 'comments-link'
In addition, the <a>...</a> is inside a <div>...</div> that has a class of 'post-footer'. CSS uses CLASS and ID to identify different elements in the HTML. So Now it is homework time again.
If you look in the code near the begining you will find: '<style type="text/css">'
If you set 'CSS: Compress?' to NO, it will be followed by:
/* ------------------------------------------------------------------
---------- BASE LAYOUT ----------------------------------------------
------------------------------------------------------------------ */
This is the start of the CSS for this page. It goes till you find a </style> (a long ways down)
You job is to find all the CSS that has 'comments-link' or 'post-footer' and paste it in your reply including the lines enclosed between the {...} like
div#menu2 {
border: dashed 1px #ccc;
}
and we will examine what you find.