On my website I have three columns in the footer with the first and last filled with text while I have placed a picture in the middle column. The issue I’m having is it is not centered, I have tried changing left/right/center alignment in the html text but nothing works, any idea what I can do?
I have also searched your forums and tried using quick css code suggested to another person with a similar question, but this did not work for me.
#text-2 .textwidget {
margin: 0 auto 0 auto;
width: 243px;
}
Hi markzarak!
Thank you for coming back.
Try the following:
#footer #text-6 .textwidget {
margin: 0 auto !important;
width: 243px !important;
}
Regards,
Günter
Perfect, thanks so much!