Coastalrugs is right. You are missing the link to review.css.php which contains the CSS for the reviews module. If you are using Squirrelcart PRO, viewing the source code of your store's home page in your browser should show the top of the page looking like this:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="title" content="PHP Shopping Cart Software - Provided by Squirrelcart" />
<meta name="keywords" content="php shopping cart,ecommerce shopping cart software,mysql shopping cart" />
<meta name="description" content="default description" />
<title>PHP Shopping Cart Software - Provided by Squirrelcart</title>
<link rel="stylesheet" type="text/css" href="http://www.example.com/squirrelcart/themes/squirrelcart/style_main.css.php" />
<link rel="stylesheet" type="text/css" href="http://www.example.com/squirrelcart/themes/squirrelcart/style_variant1_gray.css.php" />
<link rel="stylesheet" type="text/css" href="http://www.example.com/squirrelcart/themes/squirrelcart/style_variant2_1024.css.php" />
<link rel="stylesheet" type="text/css" href="http://www.example.com/squirrelcart/modules/download/templates/download.css.php" />
<link rel="stylesheet" type="text/css" href="http://www.example.com/squirrelcart/modules/news/templates/news.css.php?" />
<link rel="stylesheet" type="text/css" href="http://www.example.com/squirrelcart/modules/quick_total/templates/quick_total.css.php" />
<link rel="stylesheet" type="text/css" href="http://www.example.com/squirrelcart/modules/review/templates/review.css.php" />
<link rel="stylesheet" type="text/css" href="http://www.example.com/squirrelcart/modules/testimonials/templates/testimonials.css.php" />
<script src="http://www.example.com/squirrelcart/js/storefront.js.php" type="text/javascript"></script>
<!--[if lt IE 7]>
<script type="text/javascript" src="http://www.example.com/squirrelcart/lib/unitpng/unitpngfix.js.php"></script>
<![endif]-->
<script type="text/javascript" src="http://www.example.com/squirrelcart/lib/unitip/unitip.js.php"></script>
<script type="text/javascript" src="http://www.example.com/squirrelcart/lib/mootools/mootools.js.php"></script>
<script type="text/javascript" src="http://www.example.com/squirrelcart/lib/slimbox/slimbox.js.php"></script>
<link href="http://www.example.com/squirrelcart/lib/slimbox/slimbox.css.php" rel="stylesheet" type="text/css" />
</head>
If you view the corresponding PHP in the store_main.tpl.php template file, you will find this:
PHP Code:
<?php /* This line prevents direct access to template. Don't remove it. */ if (!defined('SC_INCLUDE_OK')) die; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="title" content="<?php print $Title ?>" />
<meta name="keywords" content="<?php print $Keywords ?>" />
<meta name="description" content="<?php print $Description ?>" />
<title><?php print $Title ?></title>
<?php print $SC_header ?>
</head>
The head section of your store_main.tpl.php template file probably looks very different. You need the <?php print $SC_header ?> line for our CSS and JS to work properly.