08/21/2013 at 11:08 am
#267682
Keymaster
@ Cori
Open the card.php file found here:
../wp-content/plugins/excertp-plus/
Change this:
$entry->getImage( array(
'image' => 'photo' ,
'height' => 120 ,
'width' => 100 ,
'fallback' => array(
'type' => 'block' ,
'string' => 'No Photo Available'
)
)
);
To this:
$entry->getImage( array(
'image' => 'photo' ,
'height' => 241 ,
'width' => 160 ,
'fallback' => array(
'type' => 'block' ,
'string' => 'No Photo Available'
)
)
);
Now open the excert-plus.css file and change this:
#cn-excerpt-plus .cn-right {
margin: 0 0 0 120px !important;
}
To this:
#cn-excerpt-plus .cn-right {
margin: 0 0 0 180px !important;
}
You might also have to tweak the min-height value in this:
#cn-excerpt-plus .cn-entry {
font-size: 12px !important;
clear: both;
position: relative;
line-height: 18px !important;
min-height: 160px;
}
Save the excerpt=plus.css file, duplicate it and name the duplicate to excerpt-plus.min.css.
Upload all the modified files overwriting the originals.
Of course, make a backup first.
Hope that helps.
