Jump to content

Prestashop 1.5 sklep w tabeli z oddzielnym tłem


Recommended Posts

w header.tpl zaraz po <body> dodajesz: <div id="mycontainer"> tak jak na przykładzie poniżej:

<body {if isset($page_name)}id="{$page_name|escape:'htmlall':'UTF-8'}"{/if} class="{if $hide_left_column}hide-left-column {/if} {if $hide_right_column}hide-right-column {/if} {if $content_only} content_only {/if}">
<div id="mycontainer">

w footer przed </body> dodajesz zamknięcie tego diva czyli </div>, tak jak na przykładzie poniżej:

    </div>
</body>
</html>

teraz czas na style css.

 

w global css dodajesz:

#mycontainer { display:block; clear:both; overflow:hidden; box-shadow: 0 0 6px #999}
Link to comment
Share on other sites

zmodyfikowałem troche style:

#mycontainer {
width: 980px;
margin: auto;
background: #FFF;
display: block;
clear: both;
overflow: hidden;
box-shadow: 0 0 6px #999;
padding: 0px 10px;
}

efekt:
57VILCp.png

 

 

gdzie umieścić? 

szczerze mówiąc - gdziekolwiek w global.css

Link to comment
Share on other sites

×
×
  • Create New...