Commented On

Styling the Basic JavaScript Output

One of the goodies included in Commented On is the ability to output what you have been commenting on recently in the form of a JavaScript include. Placing the JavaScript code on your site will output an unordered list with your recent entries.

Styling the Unordered List

The list can be styled through CSS, the following is a simple example that could be used:

ul#commentedon {list-style-type: square;}
ul#commentedon p.excerpt {display: none;}


The above style will give the unordered list a square bullet icon and will hide any excerpts. The layout is as so:

<ul id="commentedon">
<li><p><a>**title**</a></p><p class="excerpt">**excerpt**</p></li
</ul>

~