@cps4u
According your theme WP-Creativix, you have to remove this code in index.php file and this code add on your page where you want to see the “Recent Articles”.
<?php
global $post;
if(!empty($cxOptions["featured_sort"])) {
$feat_sort = $cxOptions["featured_sort"];
} else {
$feat_sort = "date";
}
if(!empty($cxOptions["featured_order"])) {
$feat_order = $cxOptions["featured_order"];
} else {
$feat_order = "DESC";
}
$args = array( 'meta_key' => 'feat_front', 'meta_value'=> '1', 'suppress_filters' => 0, 'post_type' => array('post', 'page'), 'post_status' => 'publish', 'numberposts' => 2, 'orderby' => $feat_sort, 'order' => $feat_order);
$myposts = get_posts( $args );
if(!$myposts) {
$args = array('suppress_filters' => 0, 'post_type' => array('post'), 'post_status' => 'publish', 'numberposts' => 2, 'orderby' => $feat_sort, 'order' => $feat_order);
$myposts = get_posts( $args );
}
foreach( $myposts as $post ) : setup_postdata($post);
$thumb = wpcx_get_wp_generated_thumb("feat_thumb");
?>
<div class="feat-post" id="feat-post-<?php the_ID();?>">
<h2><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title();?></a></h2>
<h3>Published <?php the_time(get_option('date_format')); ?> at <?php the_time(get_option('time_format'));?> - <?php comments_number('No Comments','1 Comment','% Comments'); ?></h3>
<?php the_excerpt();?>
<a href="<?php the_permalink();?>"><?php if($thumb) {?><img src="<?php echo $thumb;?>" alt="" /><?php } ?></a>
</div>
<?php endforeach; ?>
If u want to upload background image then the image should be large(i.e 1200*1000).
option should be:
Position: left,
Repeat: no-repeat,
Attachment: scroll