Hi,
We have 2 columns set for our footer. In the second column, we have placed a social media widget.
What Quick CSS can we use to align both footers either to centre alignment or right alignment (we haven’t decided which we’d prefer yet)?
As you can see in the attached snapshot, both columns are left aligned by default, which is what we’d like to change.
Thanks
Hi 500Webmaster!
Please share the link to the page where we can inspect the element in question and help you resolve it :)
Regards,
Vinay
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#footer #yasip-2 {
float: right;
}
Best regards,
Yigit
Hi Yigit,
That works for the second column, not the first? We’d like both columns to be changed.
Thanks
Hi!
Please change the code to following one
#footer .flex_column {
float: right;
}
Best regards,
Yigit
Hi Yigit,
For some reason that flips the content and puts content from the first column into the second and vice versa.
Hey!
Please use following code instead
#footer .flex_column {
text-align: right;
}
Cheers!
Yigit
Thanks Yigit, that works!
Just for interest sake, I tried changing the code for center alignment:
#footer .flex_column {
text-align: center;
}
– but again only one column was affected. Is there a way to fix this?
Thanks
Hey!
Please add following code to Quick CSS instead
#footer .widget {
text-align: center;
}
Regards,
Yigit
Perfect, thank you!