Version 4 Search Box Color


Author Message
Adam

Posted: 10/10/2012
Quote message 

How does one control the color of the search box in Artisteer 4. Right now my search box is black. I want it to be white, but I can't figure out where I can adjust that in Artisteer 4.

Thanks.
 
Garry

Posted: 10/10/2012
Quote message 

Find following style:

form.art-search input[type="text"] {
-moz-border-radius: 4px 4px 4px 4px;
-moz-box-sizing: border-box;
border: 1px solid #CCD6E0;
color: #7D2B03 !important;
margin: 0 auto;
padding: 3px 0;
width: 100%;
}

---------
add
---------

background: red;
 
Adam

Posted: 10/11/2012
Quote message 

Appreciate your help. How can it be done on Artisteer itself before uploading the theme? Thanks.
 
Nick

Posted: 10/11/2012
Quote message 

Controls-> Search -> More Options-> Search Control -> fill (choose your color).

These are menu choices from within Artisteer.
 
Ralph Lindner

Posted: 1/14/2013
Quote message 

This menu choice is not active in "Home editoin" of Version 4.0.0.58475.
As workaround you can add Garrys css in >home >options >css-options like:
form.art-search input[type="text"] { background: red; }
 
Karin Scholte

Posted: 5/22/2013
Quote message 

Same problem here Ralph Lindner. Did you find the solution?
 
speedyp

Posted: 5/22/2013
Quote message 

Karin - you're in luck. Ralph already included his solution in his post:

"As workaround you can add Garry's css in >home >options >css-options like: form.art-search input[type="text"] { background: red; }"

If you're not sure what that means, in Artisteer, go to home / options / css options and type the following css style rule in the blank box -

form.art-search input[type="text"]
{ background-color: red; }

Obviously, you can change "red" to any color you like 8-)
 
dano

Posted: 8/4/2013
Quote message 

Sorry I know this is an old thread but I'm having the same trouble with the input box and can't find a way of adjusting background colour (currently black).

Can I add code to editor for input box just like with search box?

Thanks
 
Angela

Posted: 3/17/2014
Quote message 

This solution worked so well for me! Thank you!