cp search function
I had recently purchased classipress theme version 3.5.4. One immediate feedback I got from my customer was related to the search block which shows in the screen occupies two rows; one for the search text; and the second for categories list. I need it to occupy one row. After some search, I found the fix in the style sheet.
In the style sheet (style.css), I had to modify the properties of the class (search block) to have padding of 5px instead of 15px. This will allow better utilization of the vertical page space.
Wordpress provides very convenient theme editor that can help you in the process.
.searchblock {
background-color: #fff;
padding: 5px; /* 15px makes the elements of the block wrap on two rows */
min-height: 40px;
-webkit-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
}
Had anyone experienced same problem? Any side effects with this solution?