0

I'm experiencing a weird issue on a site when it is loaded via a link.

Here are the two different instances:

  1. Load http://www.visioncreativegroup.com.au via the URL bar. Fonts load as expected (medium weight).
  2. Visit http://www.wpagroup.com.au and click the 'website by vision' link in the footer. The fonts are much bolder as seen in this screenshot.

The fonts are being loaded using @font-face.

Has anyone stumbled across a similar problem before? What could be causing this?

user229044
  • 232,980
  • 40
  • 330
  • 338
Scully
  • 1,038
  • 3
  • 10
  • 23

2 Answers2

1

Try this...

.semi {
    font-family: 'AauxNext-SemiBold',sans-serif;
    font-weight: normal;
}

It shows up bold in firefox on mac like it did in the screenshot. If you add font-weight: normal; it is no longer bold. I think firefox and others render the font differently, possibly something to do with it being semiBold?

Tiffany Israel
  • 460
  • 1
  • 7
  • 22
0

I think you can try pixels instead of percentage.

font-size:xxpx;  instead of percentage.

i am not sure,may it help you.

Prashobh
  • 9,216
  • 15
  • 61
  • 91