Вот этот контейнер который нужно сделать прозрачным а текст нет. <!—Start Mid Container —>
<section id=»mid_container_wrapper»>
<section id=»mid_container» class=»container»>
<div class=»<?php echo $blog_page_options; ?>» id=»content_section»>
<?php if ( have_posts() ) :
$blog_options=get_theme_mod(‘blog_page_categories’) ? get_theme_mod(‘blog_page_categories’) :»;
if($blog_options){
$blogpages =@implode(‘ , ‘,$blog_options);
}else{
$blogpages=»;
}
$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) :1;
query_posts(«cat=$blogpages.&paged=$paged»);
locate_template(‘loop.php’,true); // called loop-blog.php
else : ?>
<article>
<?php if ( current_user_can( ‘edit_posts’ ) ) :
// Show a different message to a logged-in user who can add posts. ?>
<h1 class=»entry-title»><?php _e( ‘No posts to display’, » ); ?></h1>
<p><?php printf( __( ‘Ready to publish your first post? Get started here.’, » ), admin_url( ‘post-new.php’ ) ); ?></p>
<?php else :
// Show the default message to everyone else. ?>
<h1 class=»entry-title»><?php _e( ‘Nothing Found’, » ); ?></h1>
<p><?php _e( ‘Apologies, but no results were found. Perhaps searching will help find a related post.’, » ); ?></p>
<?php endif; // end current_user_can() check ?>
</article>
<?php endif; // end have_posts() check ?>
<?php wp_reset_query(); ?>
</div>