[Resolved] drop-down search bar

Home Forums Support [Resolved] drop-down search bar

Home Forums Support drop-down search bar

Viewing 15 posts - 31 through 45 (of 58 total)
  • Author
    Posts
  • #2365733
    Fernando
    Customer Support

    Can you disable “Under Maintenance/Construction” mode of your site or share a staging site? I’ll check both inquiries.

    #2365959
    francesco

    done

    #2366698
    Tom
    Lead Developer
    Lead Developer

    Try adding this:

    .navigation-search {
        z-index: 9999;
    }

    Let us know πŸ™‚

    #2368459
    francesco

    Endless thanks Tom.

    I carry the piece of CSS related to the search bar. I ask if anything else needs to be corrected. thank you in advance.

    .masonry-load-more {
        text-align: center;
    }
    
    @media (min-width: 769px) {
    .inside-navigation.grid-container {
        width: fit-content;
    }
    form.search-form.navigation-search.nav-search-active {
        top: 45px;
    	  width: 70%;
    	  left: 65%;
    transform: translateX(-50%);
    }
    
    @media (max-width: 768px) {
        form.search-form.navigation-search.nav-search-active {
        display: flex;
    }
    
    button.nav-search-button {
        margin-right: 56px;
        border: none;
    }
    }
    
    .navigation-search.nav-search-active {
        display: flex;
    }
    
    .inside-navigation.grid-container form.search-form .search-field {
        background-color: #fff;
    }
    
    .inside-navigation.grid-container form.search-form {
        background-color: #8ad6c1;
        padding: 10px;
        display: flex;
        align-items: center;
        }
    	
    }
    
    @media (max-width: 768px) {
        form.search-form.navigation-search.nav-search-active {
        display: flex;
    }
    
    button.nav-search-button {
        margin-right: 56px;
        border: none;
    }
    }
    
    .navigation-search {
        z-index: 9999;
    }
    #2369366
    Tom
    Lead Developer
    Lead Developer

    Looks good to me! Glad we could help πŸ™‚

    #2376767
    francesco

    Sorry but I realized that in the mobile devices screen the search space remains green. instead I would like it white as for the other screens. it would be possible?

    #2376839
    Ying
    Staff
    Customer Support

    Try add this CSS:

    .navigation-search input[type="search"] {
        background-color: #fff;
    }
    #2377114
    francesco

    it seems not to work

    #2377346
    David
    Staff
    Customer Support

    Try this:

    
    .navigation-search input[type="search"], 
    .navigation-search input[type="search"]:active, 
    .navigation-search input[type="search"]:focus {
        background-color: #fff;
    }
    #2377435
    francesco

    Very thanks David, it works perfectly now. Can I send the css concerning the search field so as to see if there is something to correct or delete?

    #2377440
    David
    Staff
    Customer Support

    What other issues do you have ?

    #2377766
    francesco

    None, but I just wanted to know if maybe I have css that I can remove from all those entered for the search field.

    #2377769
    David
    Staff
    Customer Support

    It looks all ok to me πŸ™‚

    #2378353
    francesco

    thx David

    #2378506
    David
    Staff
    Customer Support

    Glad we could be of help!!

Viewing 15 posts - 31 through 45 (of 58 total)
  • You must be logged in to reply to this topic.