You have modified the file incorrectly. This is what you now have at the end of your CSS…
.clearfix:after { /* FF, O, etc. */
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
#ja-search {
width: 555px
}
.search {
float: left;
display: inline;
padding-right: 5px;
}
}
but it should be…
.clearfix:after { /* FF, O, etc. */
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
#ja-search {
width: 335px
}
.search {
float: left;
display: inline;
padding-right: 5px;
}
In other words you are missing a closing curly bracket after visibility:hidden and you have an extra one at the end.