Hi
We have 3 columns on the footer of the page and we would like the 3rd column to have the text slightly smaller. How can we modify the text size on just one widget / one column?
Thank you
Hey sitesme,
Have you figured this out? I see you added a custom id and the text looks smaller.
Best regards,
Jordan Shannon
Hey sitesme,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
#footer .flex_column:nth-child(3) p {
font-size: 11px;
}
Best regards,
Yigit
Hi Jordan,
Yes, I went back to the old school CSS websites and found a way to create a container to add the font style. However, I was looking for something more straightforward and Yigit gave me just that.
Thank you Yigit. The code worked perfectly :)
I assume that if I want to do the same for different footer columns I just need to change number 3 under flex_column:nth-child(3) to the desired column 1-5 for example, am I right?
Thank you once again for the great support guys.
Hi,
Yep that is correct, unless it is the first column or last, in which case it will be “:first-child” or “last-child”
Best regards,
Jordan Shannon