Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap: Elements too small on mobile

Is there a way to make all html elements in bootstrap like inputs, buttons, text and the nav-bar bigger when the page is displayed on a smartphone? Because it isn't really responsive, if all elements are so tiny that it is hard to touch them.

like image 948
user2737037 Avatar asked Sep 19 '13 20:09

user2737037


1 Answers

Has been addressed at Bootstrap font scaling too small on mobile .

Possibly, you need to add the viewport meta tag to your <head>:

<meta name="viewport" content="width=device-width, initial-scale=1">
like image 148
jjmontes Avatar answered Oct 17 '22 14:10

jjmontes