Jump to content

Moving menu in header


Recommended Posts

Hello,

 

I used the Leo Converse Theme and when I placed the horizontal banner it showed up in the wrong place above the logo. On the sample site of Leo Converse, it is always below the logo. I just can't seem te find where to switch it. I've been lloking at ceveral CSS files as I think it is a 'display' or 'float' problem. Can anyone help?

 

You can find the site here http://www.svar.be/iris/

 

Thank you very much

 

 

 

Link to comment
Share on other sites

go to modules> positions and search for "displayTop" modules list

you will see there a list of modules associated in top section of website

move menu module at the end (it must be last module on displayTop modules list)

Link to comment
Share on other sites

go to modules> positions and search for "displayTop" modules list

you will see there a list of modules associated in top section of website

move menu module at the end (it must be last module on displayTop modules list)

 

I tried that already but still the logo appears under the menu. I think there is a fault in the code on where the logo is placed in the layout.

 

I tried the Top Mega Menu by prestashop but it apears in the same place. So the position of the module is correct, it's last in line. Still the menu appears on top of the logo.

 

it's gotta be a layout problem, not?

Link to comment
Share on other sites

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$lang_iso}">

 

<head>

 

<title>{$meta_title|escape:'htmlall':'UTF-8'}</title>

 

{if $LEO_RESPONSIVE}

 

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0">

 

        {/if} 

 

{if isset($meta_description) AND $meta_description}

 

<meta name="description" content="{$meta_description|escape:html:'UTF-8'}" />

 

{/if}

 

{if isset($meta_keywords) AND $meta_keywords}

 

<meta name="keywords" content="{$meta_keywords|escape:html:'UTF-8'}" />

 

{/if}

 

<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />

 

<meta http-equiv="content-language" content="{$meta_language}" />

 

<meta name="generator" content="PrestaShop" />

 

<meta name="robots" content="{if isset($nobots)}no{/if}index,{if isset($nofollow) && $nofollow}no{/if}follow" />

 

<link rel="icon" type="image/vnd.microsoft.icon" href="{$favicon_url}?{$img_update_time}" />

 

<link rel="shortcut icon" type="image/x-icon" href="{$favicon_url}?{$img_update_time}" />

 

<script type="text/javascript">

 

var baseDir = '{$content_dir}';

 

var baseUri = '{$base_uri}';

 

var static_token = '{$static_token}';

 

var token = '{$token}';

 

var priceDisplayPrecision = {$priceDisplayPrecision*$currency->decimals};

 

var priceDisplayMethod = {$priceDisplay};

 

var roundMode = {$roundMode};

 

</script> 

 

{if isset($css_files)}

 

{foreach from=$css_files key=css_uri item=media}

 

    <link href="{$css_uri}" rel="stylesheet" type="text/css" media="{$media}" />

 

{/foreach}

 

{/if}

 

<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700' rel='stylesheet' type='text/css' />

 

    {if $LEO_SKIN_DEFAULT &&  $LEO_SKIN_DEFAULT !="default"}

 

<link rel="stylesheet" type="text/css" href="{$content_dir}themes/{$LEO_THEMENAME}/skins/{$LEO_SKIN_DEFAULT}/css/skin.css" media="{$media}" />

 

{/if}

 

{if $LEO_PANELTOOL}

 

<link rel="stylesheet" type="text/css" href="{$content_dir}themes/{$LEO_THEMENAME}/css/paneltool.css" media="{$media}" />

 

<link rel="stylesheet" type="text/css" href="{$content_dir}themes/{$LEO_THEMENAME}/css/fix-browser.css" media="{$media}" />

 

{/if}

 

{if isset($js_files)}

 

{foreach from=$js_files item=js_uri}

 

<script type="text/javascript" src="{$js_uri}"></script>

 

{/foreach}

 

{/if}

 

<script type="text/javascript" src="{$content_dir}themes/{$LEO_THEMENAME}/js/bootstrap.js"></script>

 

<script type="text/javascript" src="{$content_dir}themes/{$LEO_THEMENAME}/js/custom.js"></script>

 

 

 

{$HOOK_HEADER}

 

</head>

 

<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}

 

{if isset($restricted_country_mode) && $restricted_country_mode}

 

<div id="restricted-country">

 

<p>{l s='You cannot place a new order from your country.'} <span class="bold">{$geolocation_country}</span></p>

 

</div>

 

{/if}

 

<div id="leo-page" class="{$LEO_BGPATTERN} {if $lang_iso=='fr'}frcss{/if} clearfix">

 

 

 

<!-- Header -->

 

 

 

<div  id="leo-header" class="leo-header">

 

<div class="header-wrap">

 

<div class="container">

 

<div id="header_right" class="row-fuild">

 

{$HOOK_TOP}

 

</div>

 

<div class="clearfix"></div>

 

<div class="logo"> 

 

<a id="header_logo" href="{$base_dir}" title="{$shop_name|escape:'htmlall':'UTF-8'}">

 

<img class="logo" src="{$logo_url}" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if} />

 

</a> 

 

</div>

 

</div>

 

</div>

 

</div>

 

<div id="leo-mainnav" class="leo-mainnav">

 

<div class="row-fluid">

 

<div class="container">

 

{Hook::exec('topNavigation')}

 

</div>

 

 

 

</div>

 

</div>

 

 

 

 

 

 

 

<div  id="leo-maincontainer">

 

<div class="container">

 

<div class="inner-wrap">

 

<div class="row-fluid" >

 

 

 

<!-- Center -->

 

<div id="leo-centercol" class="{if $page_name == "index"} contatiner{else} span9{/if}">

 

<div id="center_column">

 

{if $page_name != 'index'}

 

{include file="$tpl_dir./breadcrumb.tpl"}

 

{/if}

 

{/if}
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...