• Resolved sheffpiper

    (@sheffpiper)


    Hi,

    I’m using the Geodirectory plugin and I’m trying to remove the ‘search for’ field. I’ve inputted the following additional CSS from the Geodirectory support pages but nothing changes:

    .gd-search-input-wrapper.gd-search-field-search {
    display: none;
    }

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Stiofan

    (@stiofansisland)

    Hi @sheffpiper,

    Try with a space between the classes

    .gd-search-input-wrapper .gd-search-field-search {
        display: none;
    }

    Thanks,

    Stiofan

    Thread Starter sheffpiper

    (@sheffpiper)

    Hi, thanks for your reply. Unfortunately that doesn’t work either.

    Plugin Author Stiofan

    (@stiofansisland)

    Your right i spotted that first mistake and assumed that would be it, below is the correct code you want:

    .geodir-search-form-wrapper .gd-search-field-search:first-of-type {
        display: none;
    }

    Thanks,

    Stiofan

    Thread Starter sheffpiper

    (@sheffpiper)

    That worked. Thanks so much. Massively appreciated.

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

The topic ‘Geodirectory Search’ is closed to new replies.