Quote Originally Posted by lmsabo View Post
Here's a link to my site: http://www.lizsabo.com/shoptest/ I actually would like to center the category names within the sidebox, not the names on the category pages.

Liz
In the includes/templates/all_business/css/stylesheet_betterCategoriesEzInfo.css change this:

Code:
.betterCategories a, .betterCategories a:visited, .betterDocuments a, .betterDocuments a:visited, .betterEzpages a, .betterEzpages a:visited, .betterInformation a, .betterInformation a:visited, .betterMoreinformation a, .betterMoreinformation a:visited, .betterBestsellers a, .betterBestsellers a:visited {
    background-color: #FFFFFE;
    border-bottom: 1px solid #CCCCCC;
    border-top: 2px solid #FFFFFF;
    display: block;
    padding: 4px;
   }
to this:

Code:
.betterCategories a, .betterCategories a:visited, .betterDocuments a, .betterDocuments a:visited, .betterEzpages a, .betterEzpages a:visited, .betterInformation a, .betterInformation a:visited, .betterMoreinformation a, .betterMoreinformation a:visited, .betterBestsellers a, .betterBestsellers a:visited {
    background-color: #FFFFFE;
    border-bottom: 1px solid #CCCCCC;
    border-top: 2px solid #FFFFFF;
    display: block;
    padding: 4px;
    text-align: center;
}
Thanks,

Anne