rintro Posted September 9, 2013 Share Posted September 9, 2013 (edited) After upgrading from 1.5.4 to 1.5.5 The header positioning is all weird. How do I move the top horizontal bar down a bit and out from under the top search and logo. I want it to look like it was like this. any help I would appreciate. Edited September 9, 2013 by vekia (see edit history) 1 Link to comment Share on other sites More sharing options...
vekia Posted September 9, 2013 Share Posted September 9, 2013 it looks like css issue, so in this case i've got question: is there any chane, to check your website? if so please share url, i will inspect code and give you solution Link to comment Share on other sites More sharing options...
rintro Posted September 9, 2013 Author Share Posted September 9, 2013 sure, I appreciate your fast reply. its decalmonkey.biz Link to comment Share on other sites More sharing options...
vekia Posted September 9, 2013 Share Posted September 9, 2013 i were wrong, it's related to module positions. go to: modules > positions search for "displayTop" modules list then move "block cart" module above the "top horizontal menu" module (you can use drag n drop feature to move it) 1 Link to comment Share on other sites More sharing options...
rintro Posted September 9, 2013 Author Share Posted September 9, 2013 (edited) Found, did and did. At first it didn't work so I just moved the Top Horizontal bar to the bottom of the list in the position "Top of pages" and its looking proper now. Top of pages - 6 Modules [This hook displays additional elements at the top of your pages] (Technical name:displayTop) 1 Quick search block v1.2 Adds a quick search field to your website. 2 Search engine keywords v1.0 Display which keywords have led visitors to your website. 3 Cart block v1.2 Adds a block containing the customer's shopping cart. 4 Pages not found v1.1 Display the pages requested by your visitors that have not been found. 5 User info block v0.1 Adds a block that displays information about the customer. 6 Top horizontal menu v1.6 Add a new horizontal menu to the top of your e-commerce website. thanks so much! Solved! Edited September 9, 2013 by rintro (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted September 9, 2013 Share Posted September 9, 2013 you're welcome glad to hear that your problem is solved now im going to mark this topic as [solved] best regards Link to comment Share on other sites More sharing options...
m.andrzejak Posted November 8, 2013 Share Posted November 8, 2013 Hello, I had similar problem but shuffle modules positions doesn't work. I had to edit file in modules/blocksearch/blocksearch-top.tpl and replace this: <div class="input_search" data-role="fieldcontain"> <form method="get" action="{$link->getPageLink('search')|escape:'html'}" id="searchbox"> <input type="hidden" name="controller" value="search" /> <input type="hidden" name="orderby" value="position" /> <input type="hidden" name="orderway" value="desc" /> <input class="search_query" type="search" id="search_query_top" name="search_query" placeholder="{l s='Search' mod='blocksearch'}" value="{if isset($smarty.get.search_query)}{$smarty.get.search_query|htmlentities:$ENT_QUOTES:'utf-8'|stripslashes}{/if}" /> </form> </div> with this: <div id="search_block_top"> <form method="get" action="{$link->getPageLink('search')|escape:'html'}" id="searchbox"> <p> <label for="search_query_top"><!-- image on background --></label> <input type="hidden" name="controller" value="search" /> <input type="hidden" name="orderby" value="position" /> <input type="hidden" name="orderway" value="desc" /> <input class="search_query" type="text" id="search_query_top" name="search_query" value="{if isset($smarty.get.search_query)}{$smarty.get.search_query|htmlentities:$ENT_QUOTES:'utf-8'|stripslashes}{/if}" /> <input type="submit" name="submit_search" value="{l s='Search' mod='blocksearch'}" class="button" /> </p> </form> </div> Then everything back to normal. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now