• i Want to incease the padding of the place holder of the search box, its very narrow for me.

    i cant see any option in the settings, plus i cant figure out custom css.

    Where can i see all the classes and the css id for customizing elements?

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author wpdreams

    (@wpdreams)

    Hi,

    There are no option for it on the back-end, but you can still use custom CSS, something like:

    div.asl_m .proinput input.orig {
        padding: 12px !important;
    }
    
    div.asl_w .probox {
        height: auto !important;
    }
    
    div.asl_w .probox .promagnifier {
        height: auto !important;
        min-width: 5%;
    }

    All the best,
    Ernest

    Thread Starter yas1nshah

    (@yas1nshah)

    it sort of worked But now the loading animation isnt centered.

    Plugin Author wpdreams

    (@wpdreams)

    Maybe this will deal with that issue:

    div.asl_w .probox .proloading,
    div.asl_w .probox .proclose {
        height: auto;
    }
    
    .asl_loader {
        width: 30px !important;
        height: 30px !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    All the best,
    Ernest

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Search Box Padding’ is closed to new replies.