Jump to content

[Solved] move header out of header div?


Recommended Posts

thanks, i'm used to straight up php (e107 mostly). basically i want the header to be a seperate div that's 100% of page (since the top bar (i made a top bar with search, bookmark/sitemap, login) is INSIDE the header div, 100% is only the width of the header, i want 100% of page). how can i get the top bar outside of header. sorry if this is confusing, i'm trying to make a prestashop that looks quite a bit different and it looks great (no sneak previews yet) but i just need help with this one thing. thanks!

what should i change in my header.tpl?

{if isset($meta_description) AND $meta_description} {/if} {if isset($meta_keywords) AND $meta_keywords} {/if} {if isset($css_files)} {foreach from=$css_files key=css_uri item=media} {/foreach} {/if} {if isset($js_files)} {foreach from=$js_files item=js_uri} {/foreach} {/if} {$HOOK_HEADER}

{$HOOK_TOP}
{$HOOK_LEFT_COLUMN}

Link to comment
Share on other sites

The thing that limits the page width is the css for the page id. i.e.

.

The structure of the page by default is:
<body>









 <!-- page -->
</body>



You could always just change this to:

<body>









 <!-- page -->
</body>




Unless I still don't understand what you mean ;)

Paul

Link to comment
Share on other sites

×
×
  • Create New...