Help with another field border

I appreciate the help I received here:

And I tried to apply that to another field border, (in order to change the field border color to #e5e5e5) by adding this to the existing code (without success):

<p>
<style type="text/css">
.form_label{
}
#keyword{
width: 75px;
border-style:solid;
border-width: 1px;
border-color:#e5e5e5;
}
</style>

Here is the current html/css:

<form method="get" action="../search.php">
<p>
<style type="text/css">
.form_label{
}
#keyword{
width: 75px;
border-style:solid;
border-width: 1px;
border-color:#e5e5e5;
}
</style>
<div id="mySiteSearch">SEARCH NOW<img src="../images/arrow-red.png"/>
<input type="hidden" name="type" value="videos" />
<input type="text" size="50" name="keyword" value="enter keywords here" style="color: #D9D9D9;" onfocus="if (this.value=='enter keywords here') {this.value=''; this.style.color='#696969';}" >
<img src="../images/arrow-red.png"/><input type="image" align="middle" src="../images/view.png" name="sa" value="Search" id="mySearch"/><br />
</div>
</p>
</form>

Any additional help will be appreciated.

Maybe, I’m missing something, but I don’t see id="keyword" in your HTML.

lol that’s the same error as in the other thread :slight_smile:

Thanks