Home Forums WoodMart support forum Full screen search : number of columns ?

Full screen search : number of columns ?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #648578

    Maxor
    Participant

    Hi
    How can i shows 5 colums in ajax search results on Full screen search ? (instead of 10)

    i cannot find where to control this

    thank you

    #648798

    Hello,

    Please add below Custom CSS code to Theme Settings > Custom CSS > Desktop CSS:

    .wd-search-full-screen .autocomplete-suggestion {
        flex: 0 0 20%; /* 100% / 5 = 20% for 5 columns */
        max-width: 20%;
    }

    Best Regards,

    #649571

    Maxor
    Participant

    Thank you

    Here is my updated code to show everything fine :

    /* full screen search 5 results by line*/
    .wd-search-full-screen .autocomplete-suggestion {
        flex: 0 0 20%; /* 100% / 5 = 20% for 5 columns */
        /*max-width: 20%;*/
    }
    
    /* full screen search center title below image*/
    .autocomplete-suggestion .suggestion-content {
        margin: auto;
    }
    
    /* full screen search for title : popular search*/
    .search-info-text {
        font-weight: 500;
        color: #444!important;
        font-size: 20px !important;
    }
    #649622

    Hello,

    You’re very welcome! I’m glad I could help. If you need anything else, feel free to reach out!

    Thanks for contacting us.
    Have a great day.

    Topic Closed.
    Best Regards,

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

The topic ‘Full screen search : number of columns ?’ is closed to new replies.