Search bar and forum list border.

SgtSpike

Member
Couple questions...

How can I move the search bar down? I'm expecting some sort of margin-top setting somewhere, but I just can't find the search bar in the style properties list anywhere.

Also, where can I change the color of the border surrounding all of the nodes? It doesn't go around the forum title, but around all of the nodes/threads or subforums.
 
Couple questions...

How can I move the search bar down? I'm expecting some sort of margin-top setting somewhere, but I just can't find the search bar in the style properties list anywhere.

Also, where can I change the color of the border surrounding all of the nodes? It doesn't go around the forum title, but around all of the nodes/threads or subforums.
Modify the top:; entry.
 
Not everything is exposed in the Style Properties system.
Use EXTRA.css to change the search box styling.

Code:
/* Move search box */
#QuickSearch {
top: 10px;
}

The border can be changed in Style Properties -> Building Blocks -> Section Main: Border Color
 
Top Bottom