Flamee
Flamee

Reputation: 45

Adobe font Issue for Mobile displays

I have created a website and hosted, www.sellrfinance.com

The font submit button has no font, the same font is being used and shows but no the button, I have followed every guide on stackoverflow to see why this happens but at no success, adding link in the header, ect, I want to figure out the issue so I don't have it in the future.

Many thanks

enter image description here

Upvotes: 0

Views: 56

Answers (1)

Sahil Dhir
Sahil Dhir

Reputation: 4250

The issue is with the wrong font-weight given on the submit button CSS:

change .contact button{font-weight:75%} to .contact button{font-weight:400}

The font-weight should be a number like 100, 200, 400, 700 and not a percentage value..

Upvotes: 1

Related Questions