add the following code at line 1 of any page you want to force SSL access on:
<?php
if (!isset($_SERVER['HTTPS']) || (isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) != 'on')) {
header("Location: https://".$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']);
die();
}
?>
if you want the seals to appear bellow the side menu, add them to the webassist/plugins/side_menu/sidemenu.php page.