Using Firebug with Firefox shows that the links in the sidebox headers on the left are using the following css:
stylesheet.css line 1894
Code:
#navColumnOneWrapper h3.leftBoxHeading a:link, #navColumnOneWrapper h3.leftBoxHeading a:visited {
color:#FFFFFF;
font-weight:bold;
}
stylesheet.css line 1918
Code:
#navColumnOneWrapper h3.leftBoxHeading a:hover, #navColumnOneWrapper h3.rightBoxHeading a:hover {
color:#FE6602;
}
...whereas the sidebox headers on the right are using a different styling, I *think* to fix the issue you will need to add navColumnTwoWrapper into those as well, like so:
Code:
#navColumnOneWrapper h3.leftBoxHeading a:link, #navColumnOneWrapper h3.leftBoxHeading a:visited, #navColumnTwoWrapper h3.leftBoxHeading a:link, #navColumnTwoWrapper h3.leftBoxHeading a:visited {
color:#FFFFFF;
font-weight:bold;
}
Code:
#navColumnOneWrapper h3.leftBoxHeading a:hover, #navColumnOneWrapper h3.rightBoxHeading a:hover, #navColumnTwoWrapper h3.leftBoxHeading a:hover, #navColumnTwoWrapper h3.rightBoxHeading a:hover {
color:#FE6602;
}
Hope that helps :)