Bruce

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Removing Header-Right Navigation from Page Template #12157
    Bruce
    Customer

      Got it. Replaced .epek-landing with this…

      .page-template-page_landing-php .header-widget-area {
      display: none;
      }

      Thanks for putting me in the right direction.

      in reply to: Removing Header-Right Navigation from Page Template #12155
      Bruce
      Customer

        Thanks. I can remove the header widget for the entire site with….

        .header-widget-area {
        display: none;
        }

        but adding the .epik-landing class does not limit that to landing pages (widget still appears). Are you sure that is the correct class name? I don’t see any other references to that in the CSS.

        in reply to: Placing primary and secondary navigation on same row #12111
        Bruce
        Customer

          To move secondary menu below the header and align right you…

          1. Comment out the following in functions.php

          // Reposition the Secondary Navigation
          // remove_action( ‘genesis_after_header’, ‘genesis_do_subnav’ ) ;
          // add_action( ‘genesis_before_header’, ‘genesis_do_subnav’ );

          2. Change “float:left” to “float:right” in style.css in this section.

          .nav-secondary .genesis-nav-menu .menu-item {
          float: right;
          }

          Bruce

        Viewing 3 posts - 1 through 3 (of 3 total)