Page 1 of 1

[SOLVED]Center Footer Text & Headings

Posted: Tue Apr 01, 2014 6:32 pm
by zokstar
I have recently removed the "extras" menu/column from the footer, and I would like to center all the text and headings.

What is the best way to do this? I have played around with the stylesheet.css and added

Code: Select all

text-align: right;
. It seems to have moved the text but not the headings.

My oc install - http://www.austrapack.com.au/opencart

Re: Center Footer Text & Headings

Posted: Wed Apr 02, 2014 10:40 pm
by ramesh_vikaschouhan
this is main issue related to CSS ...
to center them u can give each div having coloumn class . change their properties

like give names coloumn1 , coloumn2 , coloumn3 and then specify css rules in style.css

.coloumn1{
padding-left:__px ; // so that it appears center .
}

.coloumn2{
padding-left:__px ; // so that it appears center .
}


.coloumn3{
padding-left:__px ; // so that it appears center .
}

or you can put coloumn1 in left . coloumn3 in right
by float:left; float:right;
center coloumn2 keep in float:left; with padding-left:__px ; // so that it looks center ...


for more help in near future u can inbox ....me

Re: Center Footer Text & Headings

Posted: Fri Apr 04, 2014 3:16 pm
by zokstar
Sorry for the double post, solution over here - http://forum.opencart.com/viewtopic.php ... 91#p487891