10/16/2018 at 10:49 am
#475162
Keymaster
@ Paula
RE: The Heading of each listing sits higher than the image… i want the heading & wording to sit nicely beside the image… if possible, insert a thin line divider between them too?
It seems there has been some custom CSS applied to the theme’s custom CSS area. Specifically this:
#cn-list .vcard span {
display:initial
}
You need to remove that in order to correct the gap.
There is not a good way to add a border without editing the templates PHP file to change the structure so a border can be accommodated properly. Sorry!
RE: on the individual listings, the image is sitting to the right and i want to adjust the layout here too… it’s too spacey….
Removing the CSS from my initial answer helps a bit. You could also try adding this:
#cn-list #cn-profile .cn-clear {
clear: none;
}
#cn-list #cn-profile .cn-biography {
clear:left;
padding-top: 20px;
}
Hope this helps!