Vilas Posted January 2, 2011 Share Posted January 2, 2011 Hi Friends,Wish you a Very Happy New Year.I want to move fotter section links from left to Center of page. So can anyone tell me how to do it? Please find image for your referance and check highlighted part which I want to move to center of page.ThanksVilas Link to comment Share on other sites More sharing options...
shokinro Posted January 2, 2011 Share Posted January 2, 2011 Maybe it is not the best way to do that, but you can implement add making changes to /themes/yourtheme/footer.tpl file.Adding this before {$HOOK_FOOTER} <table width="100%"><tr><td align="center"> Adding this after {l s='All Rights Reserved'} </td></tr></table> Finally, it will become like this <table width="100%"><tr><td align="center"> {$HOOK_FOOTER} <p>{l s='Copyright'} © {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'}. {l s='All Rights Reserved'}.</p> </td></tr></table> Link to comment Share on other sites More sharing options...
Vilas Posted January 2, 2011 Author Share Posted January 2, 2011 HiThanks for kind support. But my footer file contains below text {if !$content_only}<!-- Right --> {$HOOK_RIGHT_COLUMN} <!-- Footer -->{$HOOK_FOOTER} {/if} </body></html>So can you help me what text where I have to enter to make selection to center of pageRegardsVilas Link to comment Share on other sites More sharing options...
shokinro Posted January 2, 2011 Share Posted January 2, 2011 insert this before <!— Footer —> <table width="100%"><tr><td align="center"> Insert this before </div> {/if} </td></tr></table> Link to comment Share on other sites More sharing options...
rocky Posted January 3, 2011 Share Posted January 3, 2011 It is better to use CSS instead of a table to centre the footer. Add text-align: center; to the #footer in the /* Footer */ section of your global.css. Link to comment Share on other sites More sharing options...
Vilas Posted January 3, 2011 Author Share Posted January 3, 2011 Hi Rocky,Thanks. Its done.RegardsVilas 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