I’m adding a CSS built sticky CTA bar on a new site, kind of overriding the colophon-bottom styling. On another site, using another theme, I was able to successfully add a line-break on mobile devices (not desktop) after an icon using the follow:
.x-icon.proposal:after {
content:"\a FAST";
color:#fff;
white-space:pre;
font-size:8px;
font-family:arial;
font-weight:700;
}
This gives me
on a site not using X theme.
This same code, with different “content” gives me
Why would this be happening? I literally copied and pasted this code from one site to the next.
Site with the functioning element: coopermisnerortho.com
Site with non-functioning element: whistlerbillboards.com
Please advise.