@ Anne
RE: how can I increase the size of the font on the letter directory at the top, as well as in each address?
Add the following to the theme’s custom CSS area:
#cn-slim-plus div.cn-alphaindex {
font-size: 16px;
}
#cn-slim-plus .cn-entry .cn-right {
font-size: 14px !important;
}
RE: I think the name of the company looks a little fuzzy. How can I experiment with different fonts?
The font is being inherited from the style used by the theme. If the theme has options to set the font for the h3
HTML tag, you should be able to change it. If the theme does not have font options for the header tags. Add the following to the theme’s custom CSS area:
#cn-slim-plus h3 {
font-family:sans-serif;
font-style: normal;
}
Tweak as desired.
RE: How would I change the color of the hover and selected names?
The color hover for links is also inherited from the theme. If the theme has option to change it in its settings you should be able to change it. If the theme does not. Add the following to the theme’s custom CSS area:
#cn-slim-plus h3 > a:hover {
color: pink;
}
Here’s a link to a FAQ which covers how to change the color of the underline and the toggle arrow in Slim Plus.
RE: I want to have a different page that lists each contractor by category: Electrical, HVAC, Pipefitter, etc. How do I do that?
I’m sorry but grouping by category is not possible.
Hope this helps, let me know.