Jump to content

Układ strony głównej


ebayshop

Recommended Posts

Witam

 

Mam laickie pytanie w którym module znajdują się te tak fajnie ułożone obrazki nad stopką i jak je przenieść zaraz pod baner główny?

 

W konfiguratorze motywu nie mam tych obrazków.

Poza tym jak je tam przesuwam w LIVE EDITcie to w podglądzie tam lądują ale na stronie po odświeżeniu niestety znikają znad stopki i nie ma ich pod banerem ;(

 

Dołączam screen.

post-846504-0-55082700-1416578480_thumb.jpg

Link to comment
Share on other sites

to moduł "themeconfigurator"

aby przenieść je nad zakładki trzeba zmodyfikować kolejność wyświetlania hooków

 

index.tpl

 

przenosimy:
 

{if isset($HOOK_HOME) && $HOOK_HOME|trim}
	<div class="clearfix">{$HOOK_HOME}</div>
{/if}

nad zakładki

tj. nad:

{if isset($HOOK_HOME_TAB_CONTENT) && $HOOK_HOME_TAB_CONTENT|trim}
    {if isset($HOOK_HOME_TAB) && $HOOK_HOME_TAB|trim}
        <ul id="home-page-tabs" class="nav nav-tabs clearfix">
			{$HOOK_HOME_TAB}
		</ul>
	{/if}
	<div class="tab-content">{$HOOK_HOME_TAB_CONTENT}</div>
{/if}
Link to comment
Share on other sites

Tak, ale czy wtedy moduł pojawi się na całej szerokości?

Potrzebuje utworzyć moduł galerii poziomej, najlepiej własny kod bo mam gotowe takie galerie - tylko muszę to wcisnąć pod baner na całą szerokość strony. Nad lewą kolumną i treścią HOME.

Link to comment
Share on other sites

w tym przypadku cały kod:

{if isset($HOOK_HOME) && $HOOK_HOME|trim}
	<div class="clearfix">{$HOOK_HOME}</div>
{/if}

zmieniamy na:

{hook::exec('home')}

i przenosimy do header.tpl pod:

					<div>
						<div class="container">
							<div class="row">
								<div id="header_logo">
									<a href="{$base_dir}" title="{$shop_name|escape:'html':'UTF-8'}">
										<img class="logo img-responsive" src="{$logo_url}" alt="{$shop_name|escape:'html':'UTF-8'}"{if isset($logo_image_width) && $logo_image_width} width="{$logo_image_width}"{/if}{if isset($logo_image_height) && $logo_image_height} height="{$logo_image_height}"{/if}/>
									</a>
								</div>
								{if isset($HOOK_TOP)}{$HOOK_TOP}{/if}
							</div>
						</div>
					</div>

lub pod:

<div class="columns-container">
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...