I'm not sure if this covers ALL the issues you were having, but it covers all the ones that I noticed when I viewed the site...
You need to add the following to your CSS file.
Code:
ul.links li a{
color:#ffffff;
}
ul.links li a:hover{
color:#F17E01;
}
.taxonomy, .node_read_more first last, .inline a{
color:#330066 !important;
}
.taxonomy, .node_read_more first last, .inline a:hover{
color:#F17E01 !important;
}
That will change the color of the links on the purple bar so that they are visible. It will also change the color of the links on the main body of the page so that they are visible on the background color used as well.
Then you need to change some of the following items...
Change this:
Code:
#sidebar-wrapper {
background:#FFFFFF none repeat scroll 0 0;
float:right;
margin-top:20px;
width:200px;
}
#sidebar {
background:#FFFFFF none repeat scroll 0 0;
width:200px;
}
To this:
Code:
#sidebar-wrapper {
background:#F5F6CE none repeat scroll 0 0;
float:right;
margin-top:20px;
width:200px;
}
#sidebar {
background:#F5F6CE none repeat scroll 0 0;
width:200px;
}
That will fix the sidebar issues with the white background showing through.
Also, I don't know if this is "intended" to be white, but seeing as how you were having issues with white in the sidebar, I'm assuming you want this to match as well... So to change the white background for the headers,
Change this:
Code:
#latestNewsmediaEvents {
background:#FFFFFF none repeat scroll 0 0;
height:40px;
padding-left:5px;
width:550px;
}
To this:
Code:
#latestNewsmediaEvents {
background:#F5F6CE none repeat scroll 0 0;
height:40px;
padding-left:5px;
width:550px;
}
Hope all this helped!
Bookmarks