
Originally Posted by
hrm
Thanks. That fixed it.
Maybe you could help with another header tweak. I'd really like for the logo to start at the top of the page. Right now, it starts below the navMain div. How can I get them to align evenly? This is another thing I've played with for a while. I've messed with the stylesheet and rearranged the tpl with no luck, so far.
You'll need to rearrange the <divs> in tpl_header.php for that.
Code:
<div id ="headerWrapper"> (holds all of the header)
<div id="logoWrapperOuter"> (holds logo and search form)
<div id="logoWrapper"> (also holds logo and search form)
<div id="logo">
LOGO CODE HERE
</div> <!-- close #logo-->
<div id="navMainSearch">
SEARCH CODE HERE
</div> <!-- close #navMainSearch-->
</div> <!-- close #logoWrapper -->
</div> <!-- close #logoWrapperOuter -->
<div id="navMainWrapper"> (hold home link and login form)
<div id="navMain"> (holds home link)
<div id="navMainLinks"> (holds home link)
HOME LINK CODE HERE
</div> <!-- close #navMainLinks -->
</div> <!-- close #navMain -->
<div class="navMainLogin"> (holds login form)
LOGIN FORM CODE HERE
</div> <!-- close .navMainLogin -->
</div> <!-- close #navMainWrapper -->
</div> <!-- close #headerWrapper -->
Then use the attached stylesheet (i modified your stylesheet on your site)
Bookmarks