Forum Replies Created
-
AuthorPosts
-
James Lee
ParticipantI figured it out but the category is underneath the search and it takes up the whole page. How do I make it so the category is the same size as the search and aligned to the left of search?
Here is the code and my website
[connections order_by='id' enable_category_select='true' connections enable_search=true background_color='#FFFFFF' color='000' image_width='180' image_height='180' image_opacity='1' connections str_View_Profile='Read More' str_bio_head='About']
James Lee
ParticipantPerfect, this is great I appreciate your quick response.
Two more request
1. Can the text be centered?
2. How do I move the text down little bit to showcase the logos?James Lee
Participantaw I see, ok two questions
1. How do I make the font smaller and not bold)
2. How do I remove the + on every word?James Lee
ParticipantI am not talking about when you hoover of the picture.
Take a look at your samples
https://connections-pro.com/add-on/gridder/
See how the name of the agent is under his picture. I want to do the same thing with our directory
http://www.rcoc.com/memership-directory/
I only see business logos and no name of the organization appear below like your sample.
PLEASE HELP
James Lee
Participantsolved
<h1>cn-gridder .cn-gridder-overlay .fn, #cn-gridder .cn-gridder-name .fn {</h1>
font-size: 16px !important;}
James Lee
ParticipantSOLVED
To change te grid look
<?php $entry->getImage(
array(
‘image’ => $atts[‘image’],
‘height’ => $atts[‘image_height’],
‘width’ => $atts[‘image_width’],
‘fallback’ => array(
‘type’ => ‘block’,
‘string’ => ”
),
‘style’ => $atts[‘image_opacity’] ? array( ‘opacity’ => $atts[‘image_opacity’], ‘filter’ => ‘alpha(opacity=’ . $atts[‘image_opacity’] * 100 . ‘)’ ) : array(),
)
); ?>to
<?php $entry->getImage(
array(
‘image’ => $atts[‘image’],
‘height’ => $atts[‘image_height’],
‘width’ => $atts[‘image_width’],
‘fallback’ => array(
‘type’ => ‘block’,
‘string’ => ”
),
‘zc’ => 2,
‘style’ => $atts[‘image_opacity’] ? array( ‘opacity’ => $atts[‘image_opacity’], ‘filter’ => ‘alpha(opacity=’ . $atts[‘image_opacity’] * 100 . ‘)’ ) : array(),
)
); ?> -
AuthorPosts
