hello
i have two footer widgets- i want to left align one and right align the other- how can i achieve this?
Hey!
Try adding this code to the Quick CSS:
#footer .container .flex_column:nth-child(1) .widget{
text-align: left;
}
#footer .container .flex_column:nth-child(2) .widget{
text-align: right;
}
Cheers!
Josue