@ Kathy
The Wollombi Valley directories use a custom template that was commission by them. One to you other questions…
re: Are there supposed to be options for the look of this template?
I only seem to have a default option with the logo ranged left and the contact information right, yet I have seen examples the other way around.
What examples, where? … wait, I found two in my list that has customized the template to flip them. I marked them as customized. Sorry, but it is impossible for me to keep track of what other change, but I do note them when I find them.
Here’s the CSS you need to flop the left and right:
#cn-cmap .cn-left {
float: right;
max-width: 100%;
width: auto;
}
#cn-cmap .cn-right {
text-align: left;
}
#cn-list span.org {
font-size: 120%;
}
#cn-list span.organization-unit {
color: green;
font-weight: bold;
padding-bottom: 10px;
}
#cn-cmap .cn-entry-single .cn-left {
float: left;
max-width: 70%;
width: auto;
}
#cn-cmap .cn-entry-single .cn-right {
text-align: right;
}
Add the custom CSS as explained in this QuickTip.
re: How do I remove the drop shadow from the entry?
Some more CSS will do the trick:
#cn-cmap .cn-entry {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
re: How do I remove the farm around the “Select Category” pull down menu?
“farm” … I’m thinking you meant to type something else???
re: Why won’t the image display on the next “detailed” page, without the biographical info?
Sorry, but that’s just how it been designed … been like that for many years now. The only way to change that is to edit the template. You need to edit the card.php
and card-single.php
files found here:
../wp-content/plugins/connections-cmap/
I suggest copying them and use the method explained in this QuickTip to create a custom template override file.
Hope that answers your questions thoroughly!