Hi there,
A general question.
If I want to target a specific footer widget area in the Enfold theme, e.g. footer widget number 3 in a 3 footer setup, how do I do that?
For instance I want to make everything in the 3rd footer widget right justified.
I can see how to target all footer areas as per code below, however, how do i target a specific one?
#footer .widget {
text-align: right;
}
Thanks.
Kevin
Hey Kevin!
Try the following:
#footer .flex_column:nth-child(3) .widget{
text-align: right;
}
If that doesn’t work for you please post a link to your website and which widget you want to target.
Regards,
Josue
Hey Josue,
Great, that did the trick, thanks :)
Kevin
You are welcome Kevin, glad to help :)
Regards,
Josue