search box

ZebratoneZebratone Registered Users Posts: 2 Beginner grinner
edited March 10, 2014 in SmugMug Customization
I am looking for how to change the search box and search button colors. Can anyone help with some custom CSS?

Comments

  • phaserbeamphaserbeam Registered Users Posts: 452 Major grins
    edited March 10, 2014
    Zebratone wrote: »
    I am looking for how to change the search box and search button colors. Can anyone help with some custom CSS?

    What do you want to "change" on the search box? Some customizations can be found here...

    if you want to change the background color of the search bar on the /search-page:
    .sm-search .sm-search-bar .sm-search-input .sm-form-field.sm-form-field-text-input {
        background-color:red!important;
        color:yellow;
    }
    

    To change the background color of the search content block:
    .sm-page-widget-search .sm-search-form .sm-form-field.sm-form-field-text-input {
        background-color:red!important;
        color:yellow;
    }
    
  • ZebratoneZebratone Registered Users Posts: 2 Beginner grinner
    edited March 10, 2014
    phaserbeam wrote: »
    What do you want to "change" on the search box? Some customizations can be found here...

    if you want to change the background color of the search bar on the /search-page:
    .sm-search .sm-search-bar .sm-search-input .sm-form-field.sm-form-field-text-input {
        background-color:red!important;
        color:yellow;
    }
    

    To change the background color of the search content block:
    .sm-page-widget-search .sm-search-form .sm-form-field.sm-form-field-text-input {
        background-color:red!important;
        color:yellow;
    }
    

    Thanks.
Sign In or Register to comment.