08/28/2013 at 4:45 pm
#268212
Keymaster
@ Bog
Ahh, so you were. I didn’t read close enough, sorry.
You need to make the change to the card.php
file found in the same folder.
Find this line:
if ( $atts['show_title'] )$entry->getTitleBlock();
Delete it.
Find this line:
echo '<h3 class="cn-accordion-item" data-div-id="cn-detail-' , $uuid , '"' , ' style="border-bottom: ' , $atts['color'] , ' 1px solid; color:' , $atts['color'] , ';"><span class="cn-sprite' . $open . '" style="background-color: ' , $atts['color'] , ';"></span>' , $entry->getNameBlock( array( 'format' => $atts['name_format'] ) ) , '</h3>';
Change it to:
echo '<h3 class="cn-accordion-item" data-div-id="cn-detail-' , $uuid , '"' , ' style="border-bottom: ' , $atts['color'] , ' 1px solid; color:' , $atts['color'] , ';"><span class="cn-sprite' . $open . '" style="background-color: ' , $atts['color'] , ';"></span>' , $entry->getNameBlock( array( 'format' => $atts['name_format'] ) ) , ' ' , $entry->getTitleBlock() , '</h3>';
You will very like have to add CSS to make the title an inline item rather than a block item.
Hope that helps.