Help with wrap under my template
-
Hi all.
I’m trying to get it to properly wrap on my template but cant seem to find the right location for it as per the instructions.I use Cherryframework with a custom template.
Under the Cheerryframework template I have pages.php. I think its here where I need to wrap it. Could anyone help?
<?php get_header(); ?>
<div class=”motopress-wrapper content-holder clearfix”>
<div class=”container”>
<div class=”row”>
<div class=”span12″ data-motopress-wrapper-file=”page.php” data-motopress-wrapper-type=”content”>
<div class=”row”>
<div class=”span12″ data-motopress-type=”static” data-motopress-static-file=”static/static-title.php”>
<?php get_template_part(“static/static-title”); ?>
</div>
</div>
<div class=”row”>
<div class=”span8 <?php echo of_get_option(‘blog_sidebar_pos’) ?>” id=”content” data-motopress-type=”loop” data-motopress-loop-file=”loop/loop-page.php”>
<?php get_template_part(“loop/loop-page”); ?>
</div>
<div class=”span4 sidebar” id=”sidebar” data-motopress-type=”static-sidebar” data-motopress-sidebar-file=”sidebar.php”>
<?php get_sidebar(); ?>
</div>
</div>
</div>
</div>
</div>
</div><?php get_footer(); ?>
The topic ‘Help with wrap under my template’ is closed to new replies.