Yes, you can change font and such with CSS. This can be placed into the “Additional CSS” box when you navigate to themes -> customize in the admin area. You want the following selectors:
.az-letters > ul.az-links > li,
.a-z-listing-widget .az-letters > ul.az-links > li,
.a-z-listing-widget.widget .az-letters > ul.az-links > li {
/* This selects the letters along the top of the page */
}
.az-letters > ul.az-links > li a,
.a-z-listing-widget .az-letters > ul.az-links > li a,
.a-z-listing-widget.widget .az-letters > ul.az-links > li a {
/* This selects the letters if they are links - i.e. there are entries for the letter
(if you want to remove the underline, you need to use this selector) */
}
.letter-section h2.letter-title {
/* This is the heading of each letter indicating the list of items for the letter */
}
.letter-section ul.columns {
/* This is the list of items for each letter */
}
.letter-section ul.columns > li a {
/* This is the link to each item's page in the list of items
(if you want to remove the underline, you need to use this selector) */
}
-
This reply was modified 3 years, 5 months ago by Dani Llewellyn. Reason: remove immediate descender in items' link selector