[Support request] Search Page Font Size

Home Forums Support [Support request] Search Page Font Size

Home Forums Support Search Page Font Size

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1379403
    Praveen

    Hi guys,

    I want to reduce the H1 post size used in search result page. and also eliminate pages from the search results too.

    Can you please help?

    #1379421
    Leo
    Staff
    Customer Support

    Hi there,

    Give this a shot:

    .search h1 {
        font-size: 20px;
    }

    If you need to set mobile specific:

    @media (max-width: 768px) {
        .search h1 {
            font-size: 20px;
        }
    }
    #1379549
    Praveen

    Hi, thanks but this has no effect.

    #1379552
    Leo
    Staff
    Customer Support
    #1379568
    Praveen

    Worked! Also how to take care of the second one? — > eliminate pages from the search results too.

    #1379630
    Leo
    Staff
    Customer Support

    Try this PHP snippet:

    add_filter( 'generate_navigation_search_output', function() {
        printf(  
            '<form method="get" class="search-form navigation-search" action="%1$s">
                <input type="search" class="search-field" value="%2$s" name="s" title="%3$s" />
                <input type="hidden" name="post_type" value="post" />
            </form>', 
            esc_url( home_url( '/' ) ), 
            esc_attr( get_search_query() ),   
            esc_attr_x( 'Search', 'label', 'generatepress' ) 
        ); 
    } );
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.