30seven, I tried to follow this guide: https://comiceasel.com/2014/05/14/editing-a-theme-to-support-comic-easel/
I inserted the code into index.php. I inserted it right below <div id=”main-wrapper”.
So it looks something like this:
<?php do_action( '__before_main_wrapper' ); ##hook of the header with get_header ?>
<div id="main-wrapper" class="<?php echo apply_filters( 'tc_main_wrapper_classes' , 'container' ) ?>">
<?php do_action('comic-area'); ?>
<?php do_action('comic-blog-area'); ?>
<?php do_action( '__before_main_container' ); ##hook of the featured page (priority 10) and breadcrumb (priority 20)...and whatever you need! ?>
The problem is that the comic and blog don’t display right. The comic isn’t centered with the nav bar, and the as soon as the code is introduced all sorts of other problems appear. The button below the featured page links says the title of featured page rather than “Read More,” and “>Read more ?” appears NEXT to the button. Also, the title of each featured page appears over its picture.
Let me know if this happens to you too when you add the code.