Jump to content

[SOLVED] move the header logo


Recommended Posts

  • 1 month later...

in this case you need to modify the header.tpl file

 

you've got there code:

<div id="header" class="grid_9 alpha omega">
				<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 id="header_right" class="grid_9 omega">
					{$HOOK_TOP}
				</div>
			</div>

use this one:

			<div id="header" class="grid_9 alpha omega">
				<div id="header_right" class="grid_9 omega">
					{$HOOK_TOP}
				</div>
                <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>
Link to comment
Share on other sites

yes! i checked it and i thought that i replied here :|

 

with this file everything is okay. the problem is with nivoslider module that you use.

it has got this block and this styles <div style='display:none'>

what to do? you need to close this div right before the logo. 

Link to comment
Share on other sites

yes! i checked it and i thought that i replied here :|

 

with this file everything is okay. the problem is with nivoslider module that you use.

it has got this block and this styles <div style='display:none'>

what to do? you need to close this div right before the logo. 

i use minicslider and cannot find the div style or something in the style.css where to look? and how do i close the div

Link to comment
Share on other sites

i think i didnt clarify enough what i wanted exactly... i wanted the logo in the same place as standard..but when i make it wider it covers up the searchbar so the searchbar becomes invisible.

i just wanted to put the headerlogo behind the searchbar and other topmenustuff

Link to comment
Share on other sites

you need to move your logo above the {HOOK_TOP} section in header.tpl file.

 

code that i mentioned you can find in: http://www.airsoftlipo.com/modules/blocksearch/blocksearch.css

im sorry i am a real big noob on this.  when you say move the logo you mean this code? :

</div>

                <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 id="columns" class="grid_9 alpha omega clearfix">

                <!-- Left -->

                <div id="left_column" class="column grid_2 alpha">

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