Thanks for your help, I’ve made some good progress. Switching between the templates now works like a charm, and the code to remove the Last Updated worked too.
Still struggling with the card-bio-custom.css to reformat the template. I have the file at this path:
/public_html/wp-content/themes/hueman/connections-templates/card-bio/card-bio-custom.css
and to test it out, I moved the .cn-last-updated code from Edit CSS (where it was working) to the card-bio-custom.css (where it no longer works). I tried putting it here too:
/public_html/wp-content/uploads/connections-templates/card-bio/
and still nothing. I’m sure there’s some silly easy thing I’m overlooking. Do I have to put some special code at the top of the CSS doc before selectors? Does it matter that the .css doc began life as a .rtf doc from TextEdit?
Working with the weirdness in the column layout – I found that the number of columns is variable from 1-4 based on the screen size. I used this in Edit CSS to force one-col for all screen sizes:
.cn-names {
-webkit-column-count: 1 !important; /* Chrome, Safari, Opera /
-moz-column-count: 1 !important; / Firefox */
column-count: 1 !important;
}
.cn-list-body {
-webkit-column-count: 1 !important; /* Chrome, Safari, Opera /
-moz-column-count: 1 !important; / Firefox */
column-count: 1 !important;
}
When I did this it fixed the weird text justification problem. Another prob in multi-col layouts was that it was splitting entries between columns – I thought I could implement a “break-inside” somewhere but couldn’t figure out where/how. But I think I’m good with the one-col look for now. I’m learning, slowly but surely =)
Now that I have the column and text formatting in good shape, I’m wondering if there’s a shortcode or other way to move the “Submit New Entry” link to another page.
Thanks again for your help – your plugin was exactly what I needed for this project and I’m very nearly done!
