Adding "View All" links beside selected Lucid list module titles.
Design and Skin Customization
The simplest is to add the link to the title, then style it with CSS.
(update site builder to version 1.1.6)
Then add this as the widget title:
Title of your widget <a href="(link to where you want to go)" class="some_class">View More</a>The best thing would be to create a class and put it in one of the css files in your skin. (if you've cloned the skin) that way you could use one class to style the way it looks and have it effect everywhere.
Otherwise, you can style each one individually, but it would suck to have to go update all of them if you wanted to change the way they look, so a class is better. but if you wanted to not use a CSS class.
Title of your widget <a href="(link to where you want to go)" style="font-size:0.8em;font-weight:normal">View More</a>