Nick20000 Posted January 1, 2014 Share Posted January 1, 2014 hi. how would i move the header welcome text and login link to above my search bar like this. picture attached. using default theme. thank you. Link to comment Share on other sites More sharing options...
vekia Posted January 1, 2014 Share Posted January 1, 2014 you have to change position of this block with css styles. for example: left:-340px; position:relative; ul#header_links { list-style-type: none; float: right; margin-top: 5px; left: -340px; position: relative; } in /modules/blockpermanentlinks/blockpermanentlinks.css line ~2 Link to comment Share on other sites More sharing options...
Nick20000 Posted January 1, 2014 Author Share Posted January 1, 2014 (edited) hi. it does not work. it moves the text to the far left of the screen? also it is moving the wrong text and link. Edited January 1, 2014 by Nick20000 (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted January 2, 2014 Share Posted January 2, 2014 it's because you have to customize it. i don't know what theme you use and what you've got there exactly. decrease/increase left param value and you will achieve what you exactly expect. Link to comment Share on other sites More sharing options...
Nick20000 Posted January 2, 2014 Author Share Posted January 2, 2014 hi sorted now. another thing i would like to do is add another link next to login called "my account" how would i do this? Link to comment Share on other sites More sharing options...
vekia Posted January 2, 2014 Share Posted January 2, 2014 you have to open module template file (.tpl) then add link there manually (unfortunately there is no other way) add there code like: <li><a href="{$link->getPageLink('my-account', true)|escape:'html'}" title="{l s='View my customer account' mod='blockuserinfo'}" class="account" rel="nofollow">{l s='My Account' mod='blockpermanentlinks'}</a></li> 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