[Resolved] search form class

Home Forums Support [Resolved] search form class

Home Forums Support search form class

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #346481
    Chad Biggs

    Hello, does anyone know how to add a custom class to the search form?

    -Chad

    #346642
    Chad Biggs

    Got it. I pasted this in the GP hooks and it is perfect. Now if I could only figure out how to put it only on the home page….

    <div> class="search-form-container">
      <?php get_search_form(); 
    </div>
    #346646
    Leo
    Staff
    Customer Support

    Wrap it like this:

    <?php if ( is_front_page() ) : ?>
        Contents for home page here
    <?php endif; ?>
    #346655
    Chad Biggs

    BAM! Thank you Leo!

    #346661
    Leo
    Staff
    Customer Support

    No problem!

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.