• Resolved Harry McLaren

    (@hazclan13)


    Hi Team,

    Firstly, I love the theme, thank you for all your development and support!

    My issue is with the ‘search’ button on the search widget. For some reason it has started looking odd.

    https://cyberkilledthecat.com/

    Haven’t been editing the CSS so I’m not sure how this has happened.

    Thanks!

Viewing 12 replies - 1 through 12 (of 12 total)
  • In your Child Theme or CSS Editor Plugin try this code:

    button.tiny, .button.tiny {
        padding: 0.025rem 1.25rem 0.6875rem;
    }

    *Note
    If your theme has a custom CSS Editor in it, you can also paste the code in there.

    Never edit core CSS or PHP files under Appearance > Editor. Your edits will be deleted when the theme is updated.

    Thread Starter Harry McLaren

    (@hazclan13)

    Thanks, that’s worked! Any idea why it would have changed?

    Not using a child theme and I don’t think I made any edits to the CSS/PHP files…

    Was the theme updated recently?

    Thread Starter Harry McLaren

    (@hazclan13)

    Possibly, within the last two weeks I think. I keep all themes and plugins up to date.

    Might just have been an over-site from the theme developer.

    Best part is WordPress can be edited easily!

    Thread Starter Harry McLaren

    (@hazclan13)

    Indeed, thanks for your help!

    Theme Author ThemeAWESOME

    (@tsquez)

    Hi there,

    I did notice the same thing with the search button but didn’t get a chance to change it before the update was approved.

    The change was on the foundation side as all buttons are styled via the main foundation css file.

    Sorry for the mix up. This will be taken care of in the next update. For now I hope everyone follows the fix provided above add it’s the same one I was gong to offer.

    If possible, please leave a review. Enjoy!!

    Theme Author ThemeAWESOME

    (@tsquez)

    Actually i think this works best:

    #searchsubmit button.tiny, .button.tiny {
    	padding-top: 0;
    }

    This targets the search button specifically

    Theme Author ThemeAWESOME

    (@tsquez)

    HAHA sorry I take that back it should be

    /* Search button fix */
    .widget #searchsubmit {
    	padding-top: 0;
    }

    The one I posted previously also targeted any other buttons like comment buttons. This is what I am going to add to the css for the new update ??

    /* Search button fix */
    .widget #searchsubmit {
    padding: 0;
    }

    (solve problem with Opera and Chrome)

    Theme Author ThemeAWESOME

    (@tsquez)

    In Wp-Forge 5.5.2.2 I used the following:

    /* Search button fix */
    .postfix.button {
      padding: 0;
      font-size: 0.875rem;
    }

    Hi!
    Great theme! Here’s another way I found to do that which is pretty specific in case buttons are used elsewhere:

    .widget_search .button.tiny {
      padding: 0;
      font-size: 0.6875rem;
    }

    Thanks, Dave

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