Change size of "like" when viewing images?

Is there any way to make this "like" button bottom left of pic larger? We are going to be using Media Gallery as a photo contest with "likes" as the way to vote & this is SO tiny I don't know that anyone will find it. I know there is a like button when viewing in gallery mode as well, but I'm assuming most will want to scroll through images to see them full size rather than using the squares thumbs before voting.

forum.webp
 
Can be styled with CSS:

Code:
.mediaMeta .mediaPublicControls .LikeLink .LikeLabel
{
    font-size: 18px;
}

Obviously adjust that to suit, but that's a very basic way of at least making it bigger.

If you wanted to edit the HTML, you could look at the template xengallery_media_view
 
Top Bottom