Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #609243

    How do I change the wording within the search box? Presently it just says “SEARCH”. I want to change it to something like SEARCH ANY PRODUCT or something like that. Thanks!

    #609724

    Hey tylerschwab!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_frontend_search_form_param','new_search_placeholder');
    function new_search_placeholder( $array){
    $array['placeholder'] = __('Search any product','avia_framework');
    return $array;
    }

    Regards,
    Yigit

    #609982

    Thanks Perfect. For the actual search box in the search widget I want to change the color of the background and the color of the icon – but only to the search widget. When I changed in general styling other things changed as well which I do not want. Where do I make those changes?

    #610151

    Hi,

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Thanks,
    Rikard

    #610378

    http://testing.bwmarketingspecialties.com/

    Not the search box right in the middle of the page – that is what I am referring to.

    Regards,

    Tyler

    #610384

    try defining some css for

    #searchsubmit

    like

    #searchsubmit {color:red; background-color:green;}

    #611181

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .widget input#s {
        background: white !important;
    }
    .widget #searchsubmit {
        color: red;
    }

    Cheers!
    Yigit

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.