Jump to content

[Solved] Footer Alignment right


john.mcdowell

Recommended Posts

Hello,

 

I have searched for a while now and cannot seem to align the footer to the right. (instead of left)

 

I think I need to edit either modules/blockcms/blockcms.tpl or themes/prestashop/footer.tpl or themes/prestashop/css/global.css ? but I'm not sure which one and what part..... hopefully its something simple.

 

Thanks

Link to comment
Share on other sites

Ok should be a simple fix for you go to themes/purepetshop/css/modules/blockcms and edit blockcms.css.

Always add a semi colon after the last line befor entering a new line, see below.

Find the heading #footer .block_various_links and add float : right

 

Should look like this when done:

#footer .block_various_links

list-style-type : none ;

list-style-image : none ; (add semi colon)

float : right

 

I noticed the links are hard to see to change the font color look for the heading #footer .block_various_links LI A

and add color : black (or any color you like)

 

Should look like this when done:

#footer .block_various_links LI A

text-decoration : none ; ( add semi colon)

color : black ( or color of choice)

 

You can remove the Powered be Prestashop by going to modules, front office features, CMS block and clicking configure and uncheck the box next to Dispaly Powered by Prestashop in the various footer links section.

 

Or change that color to, look for heading #footer .block_various_links LI and add color : black

also change the padding-right : 2px to 0px

 

should look like this when done:

#footer .block_various_links LI

border-left : #888 1px solid ;

padding-bottom : 0px ;

padding-left : 4px ;

padding-right : 0px ;

display : inline ;

padding-top : 0px ; (add semi colon)

color : black (or color of choice)

 

 

Let me know how it goes and if you need anything else.

  • Like 1
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...