06/14/2018 at 10:06 am
#465591
Keymaster
@ Kristin
RE: What is the CSS to change the blue color of the A-Z listing?
This is picked up from the formatting applied by the theme for links. Your CSS is almost correct. It should be:
#cn-list .cn-alphaindex a {
color: #00c4d9;
}
RE: The formatting when in Search mode is a little off. The bullet sentence is below the box, And I would like more padding under the Clear Search button
This too is being caused by the theme. For some reason list items and buttons are being floated left, globally. Add the following to the theme’s custom CSS area to correct:
#cn-list ul,
#cn-list ul li,
#cn-list .button {
float: none;
}
To increase the bnottom margin use:
#cn-search-messages {
margin-bottom: 50px
}
Hope this helps!
