Thank you very much, this was very helpful!
But … i inserted the css in “design – cutomizer – additional css” and … nothing happend. I tried a few changes and … nothing happend.
After a while i recognized, that there was a missing “}” in the css you posted above. Look at line 13, there it is missing.
I inserted the missing “}” and then it worked.
I also hat to add some “!important” at some places, so that the colors changed.
Here is my adjusted css:
#page .widget-area .widget_search.pen_widget_transparent .search-field {
border: 1px solid !important;
color: #5f2d5f !important;
}
body.pen_drop_shadow #page .widget-area .widget_search.pen_widget_transparent .search-field {
box-shadow: 2px 2px 5px rgba(0,0,0,0.25), 2px 2px 5px rgba(0,0,0,0.25) inset;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
#page .widget-area .widget_search.pen_widget_transparent .search-field:focus,
#page .widget-area .widget_search.pen_widget_transparent .search-field:hover,
#page .widget-area .widget_search.pen_widget_transparent .search-field:active {
color: #eacaea !important;
border-color: #c976c3 !important;
}
#page .widget-area .widget_search.pen_widget_transparent .search-submit {
background: transparent;
border: 1px solid #5f2d5f !important;
color: #c976c3 !important;
font-weight: bold !important;
}
body.pen_drop_shadow #page .widget-area .widget_search.pen_widget_transparent .search-submit {
box-shadow: 2px 2px 5px rgba(0,0,0,0.25);
}
#page .widget-area .widget_search.pen_widget_transparent .search-submit:focus,
#page .widget-area .widget_search.pen_widget_transparent .search-submit:hover,
#page .widget-area .widget_search.pen_widget_transparent .search-submit:active {
background: transparent !important;
border-color: #c976c3 !important;
color: #eacaea !important;
}
You can have a look at the result at reicom.de
The Search is at the bottom of the left sidebar.
Have a nice and sunny week,
Joachim