Navigation buttons help
I am slowly, slowly, slowly poking at the new skins to create something that's workable for me, but I've run into a niggle that I can't seem to fix. It's probably something remarkably simple, but my eyes are starting to cross looking at code. :\
I want the search box and button to be on one line along with the rest of the navigation buttons in the header. I stripped out the logo, and now there's space to shift everything to the left, but it just ... won't shift.

Any help? Which class should I be looking for? Is it the fault of yet another of the ubiquitous floats? I just want those buttons left-aligned.
I want the search box and button to be on one line along with the rest of the navigation buttons in the header. I stripped out the logo, and now there's space to shift everything to the left, but it just ... won't shift.

Any help? Which class should I be looking for? Is it the fault of yet another of the ubiquitous floats? I just want those buttons left-aligned.
no subject
#header .heading img {
display: none;
}
#header ul.primary {
padding-left: 0;
}
If you want to push these more to the left, add 'text-align: left;' I think (and maybe add a little padding back).
no subject
This did something TERRIFICALLY confusing, (I think it was likely conflicting with something else in my horrible mess of code >.> There is no rhyme or reason in my organization. Hierarchy what hierarchy.) BUT, removing the ".heading" and leaving it as "#header img" worked perfectly. The ul.primary bit was just what I needed, too, thank you thank you! XD
no subject