We have a footer line in our site that says: Website Design | Hosting:B Square Web and the link B Square Web is an 18px font, and I can see it in the code as 18px inline2. Where is that being added. We want to shrink that link size down. Website is: https://crossfieldheating.com
HI @bsquareweb,
Thanks for writing in!
I can see the custom CSS which is written for a:link is causing the issue.
Not sure if you have added the CSS or it’s coming from some third-party plugins.
to overwrite this please add this code to the element css of the text element.
Just edit the footer in footer builder and select the text element. In the customize tab you will find the element css box.

Place this code there.
$el a {
font-size: 0.68em;
font-weight: 400;
letter-spacing: 0.15em;
}
Hope this helps!
Just tried and did not have an impact. I don’t see a third party plugin for css.
Hi There,
That custom CSS is from this text element:
585-872-4420 | 24 Hrs/Day | 7 Days a Week!
Please find and remove it:
a:link{
color: silver; font-weight: bold; font-size: 18px;
}
a:hover {
color: goldenrod;
}
Please add the element CSS as @basanta suggested above instead of add the <style> tag to the text element.
Regards!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.