This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Need help adjusting search bar

#848
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

In this version your can’t change the width of the plugin, it’s adjusting automatically to the container element. The best way to change the width is to add the search shortcode inside a div element and change the div’s width, like:

<div style='width:300px'>
  <?php echo do_shortoce(...); ?>
</div>

let me know if it helps!