Hi,
Some time back you guys supplied the following code:
body#top #text-7 .textwidget a {
font-size: 18px;
font-weight: bold;
color: #ccc;
}
This was so that I’d be able to modify the text setting in the 2nd ‘column’ widget in the footer.
I’ve since added 2 more columns to the footer and moved the text from the original column 2 to the column 4 position.
What do adjust, in the above code, so that it effects column 4?
Hey Stephen,
Please provide a link to the site/page in question so we can look into this further.
Best regards,
Jordan Shannon
Here you go:
Hi,
Adjust to this:
body#top #text-9 .textwidget a {
font-size: 18px;
font-weight: bold;
color: #ccc;
}
Best regards,
Jordan Shannon
Hi,
Did you need additional help with this topic or shall we close?
Best regards,
Jordan Shannon
One more Q on tis topic.
May I ask for the code to enlarge the text in the other 3 columns of the footer widget, both on the desktop site and the mobile site, but setting different point sizes on each platform?
Hi,
Add this to quick css:
Desktop:
body#top #footer .textwidget a {
font-size: 18px!imprtant;
font-weight: bold;
color: #ccc;
}
Mobile:
@media only screen and (max-width: 600px) {
body#top #footer .textwidget a {
font-size: 18px!imprtant;
font-weight: bold;
color: #ccc;
}}
Best regards,
Jordan Shannon