Viewing 6 replies - 1 through 6 (of 6 total)
  • Did you tried by modifying the Theme’s CSS (if has room for custom settings) to the button class?

    Thread Starter josephtersoo1

    (@josephtersoo1)

    i am using themify ultra theme.
    i just need a css code to modify it.

    Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    i am not exactly sure if this is what you want to do, but in order to change the gray search bar in [adverts_list] to green you can go to wp-admin / Appearance / Customize / Additional CSS panel and add there the code below

    
    .adverts-options {
        background: green;
        color: white;
    }
    

    If this is not it, then it would be best if you can post a screenshot with the element which you want to modify marked.

    Thread Starter josephtersoo1

    (@josephtersoo1)

    here is the screenshot.
    https://pasteboard.co/JobBvMZ.png
    the code didnt work.

    Plugin Author Greg Winiarski

    (@gwin)

    So you actually want to change the button color/background, not the search bar itself?

    If so then in Additional CSS panel add the code below

    
    a.adverts-form-submit.adverts-button-small {
        color: white;
        background: green;
    }
    

    if it will not work postfix the values with !important keyword like this color: white !important;.

    Thread Starter josephtersoo1

    (@josephtersoo1)

    Thanks, it did work.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to change the color of the search tab’ is closed to new replies.