Hi Harald,
None of those files will change it.
Please the css code with this
.search-results .x-container.offset-bottom {
max-width: 1200px;
}
.search-results .x-container>.product .entry-wrap {
border: 1px solid #000 !important;
margin: 0 0 30px 0;
}
After that, create file content.php in wp-content\themes\pro-child\framework\views\icon and copy the code below into that file.
<?php
// =============================================================================
// VIEWS/ICON/CONTENT.PHP
// -----------------------------------------------------------------------------
// Standard post output for Icon.
// =============================================================================
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-wrap">
<?php x_icon_comment_number(); ?>
<div class="x-container max width">
<?php if(is_search()):?>
<?php if ( has_post_thumbnail() ) : ?>
<div class="entry-featured">
<?php x_featured_image(); ?>
</div>
<?php endif; ?>
<?php x_get_view( 'icon', '_content', 'post-header' ); ?>
<?php else: ?>
<?php x_get_view( 'icon', '_content', 'post-header' ); ?>
<?php if ( has_post_thumbnail() ) : ?>
<div class="entry-featured">
<?php x_featured_image(); ?>
</div>
<?php endif; ?>
<?php endif; ?>
<?php x_get_view( 'global', '_content' ); ?>
</div>
</div>
</article>
Hope that helps