Home / Widgets / Custom Search Form CSS
Duplicate Snippet

Embed Snippet on Your Site

Custom Search Form CSS

Add styles to custom form.

Code Preview
css
/* Custom search form styling */
#searchform {
    margin: 0;
    position: relative;
}
#searchform .search-box {
    display: flex;
}
#searchform #s {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}
#searchform #searchsubmit {
    background: #333;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 10px 20px;
    cursor: pointer;
}   

Comments

Add a Comment