You can remove the word "galleries" by adding this code to your CSS box:
.homepage #galleryTitle {
display: none;
}
Remove the words "gallery categories" by adding this code to your CSS box:
#categoriesBox .boxTop {
display: none;
}
Alternatively, you can CHANGE the text by adding the corresponding code to your Bottom JavaScript, changing the teal to the text you'd like to display instead.
Change "galleries":
YE.onAvailable('galleryTitle', function() {this.innerHTML = 'New Gallery Title'});
Change "featured galleries":
YE.onAvailable('featuredTitle', function() {this.innerHTML = 'Something Else'});
Change "gallery categories":
YE.onAvailable('categoryTitle', function() {this.innerHTML = 'Something New'});