Search Page CSS Issue
-
I can’t find in the code why this mess is happening with the submenu bar here: https://www.iropartners.at/?s=nofindinput when entering a search term, which can’t be found on the page.
THEME SEARCH.PHP CODE_
<?php get_header(); ?> <div class="content"> <?php if (have_posts()) : ?> <h2>Ihre Such - Resultate für ‘<?php the_search_query(); ?>’</h2> <br /> <div class="searchbox"><?php include (TEMPLATEPATH . '/searchform.php'); ?></div> <br /><br /> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h3 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3> <div class="entry"> <?php the_excerpt(); ?> </div> <div class="postmetadata"> <?php if( function_exists('the_tags') ) the_tags(__('Tags: '), ', ', '<br />'); ?><br /> <?php edit_post_link('Edit', '', ' | '); ?><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><strong>Lesen Sie mehr ...</strong></a></div> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div> <?php else : ?> <h2>Wir haben leider keine Einträge für Sie gefunden. Probieren Sie eine andere Eingabe?</h2> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Search Page CSS Issue’ is closed to new replies.