Change the font, font size, add borders / images / background colours to the comments themselves or just the page background. Font Changes In wp-layout.css, add this; ol#commentlist p { font-family: Tahoma; font-size: 100%; } This is the font that the comments will be displayed in. Change to suit your site. Add Borders ol#commentlist li { border-left: solid 1px #ff0000; border-right: solid 1px #ff0000; border-top: solid 1px #ff0000; border-bottom: solid 1px #ff0000; margin: 10px; } This will add a border around each post, and separate the posts by a margin of 10 pixels. The colour there is red, so alter as you will, and for those borders that you do not want, just remove the line required. You could always have a dotted line instead of solid too. Comment Image Add this line to the above code: background-image: url(‘image.gif’); This will place an image behind the comment entry. You can […]
[Continue Reading...]