Hi there!
Have an issue with horizontal scrollbar.
I use pagebuilder and Logos plugin to make a new Clients page.
Also I made this full width page template:
<?php
/*
Template Name: Full Width 9
*/
get_header(); ?>
<!--Start Page Content -->
<div class="page-content-container">
<div class="page-content">
<div class="grid_16 alpha">
<div class="content-bar">
<?php if (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<div class="clear"></div>
<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'black-bird' ) . '</span>', 'after' => '</div>' ) ); ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>
This template works fine at the start page but at the clients page I have a horizontal scrollbar.
Can you help?
Thanks a lot in advance.