macandcheese Posted October 24, 2008 Share Posted October 24, 2008 where is the header div located (in which php?). i need to remove it from the heirarchy of divs and make it it's own floating div. where can i? thanks-adam Link to comment Share on other sites More sharing options...
Paul C Posted October 24, 2008 Share Posted October 24, 2008 header.tpl in the THEME directory Paul Link to comment Share on other sites More sharing options...
macandcheese Posted October 25, 2008 Author Share Posted October 25, 2008 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 More sharing options...
Paul C Posted October 25, 2008 Share Posted October 25, 2008 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 More sharing options...
Recommended Posts