• Resolved chrislowthian

    (@chrislowthian)


    Hi,

    The theme is great by the way, have made a few changes using a child theme and all is great. One thing I can’t seem to do is move the “Go” button which appears under the search box in the side bar. Ideally I would like it on the right of the text box next to it, or at least on the right under it.

    Is this something that can be done? Having it under the test box on the left just does not look right in my opinion.

    Thanks in Advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Yea try using the following CSS:

    @media all and (min-width: 1000px) {
    
      .widget .search-field {
        width: 70% !important;
      }
      .widget .search-submit {
        width: 28% !important;
        min-width: 0 !important;
      }
    }

    It looks like it would be too cramped until the screen is 1000px or wider, so the code is wrapped in a media query for that. Feel free to change that though and adjust the width values.

    Unfortunately, !important tags are a must since there is a lot of styling that gets handed down to these elements, but it should work well regardless.

    Thread Starter chrislowthian

    (@chrislowthian)

    Thank you thats allot better!

    Many Thanks ??

    Theme Author Ben Sibley

    (@bensibley)

    Sure thing, I’m happy to help ??

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