Jason Roozee
Jason Roozee

Reputation: 49

Weird HTML Issue. Text size gets small when clicking link

Check out this website for my customer: http://www.jenkagroup.com on a a Android mobile device.

When clicking the "Click Here" link, the whole line of text gets small and it does nothing. Clicking it again, then the link works.

I cannot for the life of me figure out why.

It doesn't seem to happen in Safari or on any desktop PC browser. Just on Android Chrome viewed on a smaller size screen (mobile).

Any ideas?

Upvotes: 1

Views: 361

Answers (1)

Bjorn.B
Bjorn.B

Reputation: 1705

Try adding this rule to the head of your site:

<meta name="viewport" content="width=device-width,initial-scale=1">

I was able to trigger it in chrome, but it also stopped once I added this rule. It is likely due to the way that devices render information for different sized screens. For reference, check: https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag

Upvotes: 1

Related Questions