Quote Originally Posted by gjh42 View Post
tpl_box_default_right.php has nothing to do with the xxx [more]. Those are links, and are affected twice by this declaration:
Code:
/*sideboxes*/
.columnLeft {}

h3.leftBoxHeading, h3.leftBoxHeading a,
h3.rightBoxHeading, h3.rightBoxHeading a {
    font-size: 13px;
    color: #5f6601;
    text-align: left;
    padding-left: 30px;
    font-weight: bold;
    }
Make it separate:
Code:
/*sideboxes*/
.columnLeft {}

h3.leftBoxHeading, h3.leftBoxHeading a,
h3.rightBoxHeading, h3.rightBoxHeading a {
    font-size: 13px;
    color: #5f6601;
    text-align: left;
    font-weight: bold;
    }
h3.leftBoxHeading,
h3.rightBoxHeading {
    padding-left: 30px;
    }
Hi

Thanks it worked

your the BEST