CSS question

Posted By trenery Tue 23 Nov 2010
Add to Favorites1
Author Message
trenery
 Posted Tue 23 Nov 2010
Supreme Being

Supreme Being - (24,343 reputation)Supreme Being - (24,343 reputation)Supreme Being - (24,343 reputation)Supreme Being - (24,343 reputation)Supreme Being - (24,343 reputation)Supreme Being - (24,343 reputation)Supreme Being - (24,343 reputation)Supreme Being - (24,343 reputation)Supreme Being - (24,343 reputation)

Group: Forum Members
Last Active: Thu 8 Mar 2012
Posts: 41, Visits: 72
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?
Neil
 Posted Tue 23 Nov 2010
Supreme Being

Supreme Being - (127,027 reputation)Supreme Being - (127,027 reputation)Supreme Being - (127,027 reputation)Supreme Being - (127,027 reputation)Supreme Being - (127,027 reputation)Supreme Being - (127,027 reputation)Supreme Being - (127,027 reputation)Supreme Being - (127,027 reputation)Supreme Being - (127,027 reputation)

Group: Forum Members
Last Active: Sat 3 Nov 2018
Posts: 192, Visits: 5,220
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
Paul
 Posted Wed 24 Nov 2010
große Käse

große Käse - (524,188 reputation)große Käse - (524,188 reputation)große Käse - (524,188 reputation)große Käse - (524,188 reputation)große Käse - (524,188 reputation)große Käse - (524,188 reputation)große Käse - (524,188 reputation)große Käse - (524,188 reputation)große Käse - (524,188 reputation)

Group: Administrators
Last Active: Tue 10 Sep 2024
Posts: 807, Visits: 2,748
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


--
If my post solves your issue, can you 'Mark as Answer' so it's easier for other users to find in future.

If you would like to be informed of new features, new releases, developments and occasional special bonuses, please sign up to our mailing list: http://bit.ly/19sKMZb
CSS

Similar Topics

Expand / Collapse

Reading This Topic

Expand / Collapse

Back To Top