CSS question


https://forum.kartris.com/Topic236.aspx
Print Topic | Close Window

By trenery - Tue 23 Nov 2010
Hi Guys

What is the best way to move the search box to the right hand side and slightly down using the CSS? What should I be changing to move it?
By Neil - Tue 23 Nov 2010
It looks like you may need to modify the template as the search box is in the #header_centre div. You can move it to be contained in the #header_right div. Them position using padding etc

CSS Positioning
By Paul - Wed 24 Nov 2010
The searchbox is located within the header_centre element, which is styled in template.css. You could try floating this right

#header_centre
{
    width: 400px;
    float: right;
    padding: 40px 0 0 0;
}


Would probably also need to change the float to right for this style, also in template.css:

#section_searchbox #searchboxes