03/29/2016 at 9:57 am
#370889
Keymaster
@ Beth
re: I would like to display the logo of in the profile page as well. How do I do that?
To do this you have to edit the card-single.php file found here:
../wp-content/plugins/connections-gridder/
Add this line of code to where you wish the logo to display:
$entry->getImage( array( 'image' => 'logo', 'width' => 300, 'height' => 200 ) );
Change the size as desired.
I highly suggest making this change and utilizing template override files.
re: How do I change the margins on the profile page to look like your demo? Do I edit the PHP File? Can I make a new PHP Template for it to reference?
Which theme are you using, can you share a link?
The quick fix is to add the following CSS to the theme’s custom CSS area:
#cn-gridder .cn-entry-single {
max-width: 600px;
margin: 0 auto;
}
Hope that helps, let me know.
