Hi,
I assume you are referring to the featured boxes sections (since those are the only sections that display posts and come in multiple instances).
There is no readily available option to configure such behaviour, however you can make use of the theme’s query filter to override the query responsible with retrieving the posts:
$args = apply_filters( 'bravada_boxes_query_args', array(
'showposts' => $options['theme_lpboxcount' . $sid],
'cat' => cryout_localize_cat( $cat ),
'ignore_sticky_posts' => 1,
'lang' => cryout_localize_code()
), $options['theme_lpboxcat' . $sid], $sid );
$custom_query->query( $args );