• Resolved sergiomorais

    (@sergiomorais)


    Hi,

    Congrats on a great plugin!

    Is there a way to increase the search bar height?
    The width is easily adjusted but I cannot seem to find height settings..

    Thanks

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

    (@wpdreams)

    Hi,

    There is no option for that for alignment reasons, but you can increase the height by adding padding to the inner box with custom CSS like so:

    .asl_m .probox {
        padding: 10px !important;
    }

    Best regards,
    Ernest M.

    Thread Starter sergiomorais

    (@sergiomorais)

    Hi,

    Thanks for the workaround. It’s the result I was looking for.

    Is there a way to also increase the size of the search icon so that the darker shaded box of this icon is extended to the edges of the now bigger search bar?

    Thanks

    Plugin Author wpdreams

    (@wpdreams)

    Hi,

    Yes, you can do that as well, but by using a bit different custom CSS. So instead of the previous, use this one:

    .asl_m .probox,
    .asl_m .promagnifier,
    .asl_m .prosettings  {
        padding: 10px !important;
    }
    
    .asl_m .promagnifier,
    .asl_m .prosettings {
        margin: -10px -10px 0 0 !important;
    }

    I am not sure if this works with all themes though. Make sure to use the same margin and padding numbers in both code sections.

    Best regards,
    Ernest M.

    Thread Starter sergiomorais

    (@sergiomorais)

    Hi,

    Thanks again. Worked like a charm!

    Regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Search bar height’ is closed to new replies.