Fixing search page issue
-
Since version 1.0.9 this theme seems to have been afflicted by a layout issue on the search page. This can be resolved by making a small alteration to wp-content/themes/keratin/search.php.
Simply add two new divs (with classes ‘grid-sizer’ and ‘gutter-sizer’ respectively), as follows, to the page.
<div id="post-wrapper" class="post-wrapper post-wrapper-archive post-wrapper-archive-search"> <!-- new --> <div class="grid-sizer"></div> <div class="gutter-sizer"></div> <!-- end of new --> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?>
- The topic ‘Fixing search page issue’ is closed to new replies.