mfg92/hugo-shortcode-gallery

Change font color of filter buttons

Closed this issue · 2 comments

Hello,

I managed to include the gallery into my website and everything is working fine so far (thank you for the great work!).

However, I would like to change (darken) the font color of the filter buttons, as they currently appear with white font on light gray background on my website.

Any idea on how to achieve this?

I am very new to hugo, your help is much appreciated!

mfg92 commented

You have to add a CSS rule like this to your site/theme:

.justified-gallery-filterbar button {
	color: #000;
	border-color: #000;
}

With that rule in place, it looks like this on my website:
grafik

Thanks a lot!
I found and adjusted the lines in the filterbar.sass file and that worked!