It appears the way the divs are nested, the user menu overlays the search and social links so they cannot be used. I can rearrange to get them to display but for some reason, they'll only show for authenticated users even though anonymous has rights to search. I'm sure there is a simple solution to this and I'll keep poking it but wanted to give a heads for anybody using out-of-the-box. (tested in Chrome and Firefox)

Comments

bhosmer’s picture

From what I can tell, this may have been the intended placement of the search and social links from page.tpl.php:

 <?php require_once ('includes/region_layout.php');?>
  <?php $show_breadcrumb = theme_get_setting('show_breadcrumb');?>    
  <?php $twitter_url = theme_get_setting('twitter_url');?>  
  <?php $facebook_url = theme_get_setting('facebook_url');?>       

  <div id="page-wrapper"><div id="page-wrapper-inner">
<div id="search-box"><?php print render($page['search_box']); ?>
          </div>
          
          <div id="social">
            <ul class="social-links">
              <li><a class="rss" href="<?php print $base_path ?>rss.xml"></a></li>
              <li><a class="twitter" href="<?php print $twitter_url ?>"></a></li>
              <li><a class="facebook" href="<?php print $facebook_url ?>"></a></li>
            </ul>
          </div> 

chris-cmfi’s picture

This works. It aligns it a little differently than I planned but pretty easy to tweak.

Thanks!