can't find wrapper for css customization
-
Hi all
I have some css problem using this plug on my theme…following instructions here
https://www.designwall.com/guide/dw-question-answer-plugin/#Style_integrationi cannot find my wrapper on the page.php of my theme which is something like this.
Can someone help please ?
Any suggestion about how to compile the content-start-wrapper.phpmy page.php file is:
<?php get_header(); ?>
<?php //Display Page Header
global $wp_query;
$postid = $wp_query->post->ID;
echo page_header( get_post_meta($postid, ‘qns_page_header_image’, true) );
wp_reset_query();
?><!– BEGIN .section –>
<div class=”section”><ul class=”columns-content page-content clearfix”>
<!– BEGIN .col-main –>
<li class=”<?php echo sidebar_position(‘primary-content’); ?>”><h2 class=”page-title”>
<?php the_title(); ?>
</h2><?php load_template( get_template_directory() . ‘/includes/loop.php’ ); ?>
<!– END .col-main –>
<?php get_sidebar(); ?>
<!– END .section –>
</div><?php get_footer(); ?>
- The topic ‘can't find wrapper for css customization’ is closed to new replies.