Hi shakira_597 thanks for your positive comment!
Simple Solution
You can change the colour of the green categories rollover by adding this code to your theme CSS
#wpc-col-1 ul li a:hover, #wpc-col-1 ul li.active-wpc-cat a {
background: #0a0d6b !important;
}
Obviously change the colour code there as needed to match your theme.
This will not have the nice little triangular tip (that’s done using an image) but is the simplest way to quickly change the colour of the rollover.
Advanced Option
The triangular tip is done using an image which can be found in the plugin directory wp-catalogue\includes\css\images If you wanted to have the triangular tip but just have that graphic in your own colour follow these steps:
1. Download a copy of the image and bring it into an image editor
2. Change the colour of the graphic in your image editor
3. Save the image as transparent png with a new name such as “new-rollover.png”
4. Upload the image to your theme images folder
5. In your theme CSS now add this code (instead of above snippet)
#wpc-col-1 ul li a:hover, #wpc-col-1 ul li.active-wpc-cat a {
background:url(images/new-rollover.png) no-repeat left top !important;
}
Now refresh the catalogue and you should find the new rollover replacing the green default rollover.
Hope this helps! ??
Oh and if you like this plugin it is really helpful if you can give a rating/review here. Thanks