• At the bottom of all my pages in the footer is a search widget under a subscription one. How do I move the search button beside the search input field as it is with the subscription box above with CSS? I have tried everything I can think of but can’t get it to work.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • When I look at your site the subscribe button is under the field and the search button is to the right hand side of the search field. Do you want the search button below the search field ? Not sure what you are looking for here.

    Add below CSS code –

    form.search-form{
        display: inline-flex;
    }

    It will help you to align your button with your search input field.

    • This reply was modified 5 years, 3 months ago by baranwal.
    Thread Starter astoryaboutagirl

    (@astoryaboutagirl)

    @mrtom414 your right, I have that backwards it is the email subscribe submit button that I want besides the input field for it the same as the search one currently is.

    You can align both the form input box and buttons using below CSS code –

    form.es_subscription_form{
        display: inline-flex;
    }

    This CSS only works for subscribe form if you want to align your search form too then please check my previous answer(mentioned above in your question).

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Moving search button’ is closed to new replies.