twitter bootstrap - Text size too small on mobile optimised site -
i have made website using bootstrap, works on desktop on mobile text size shrinks small, solutions make text appear on mobile site?
<div class="col-md-4 col-xs-12"> <a href="#" class="thumbnail"> <img src="dapp/theme/images/hidden_superpower.jpg"alt="125x125"> <h4>your name's hidden meaning!</h4> </a> </div>
use css3 media rules:
@media screen , (max-width: 480px) { body div h4 { font-size: 2em; } }
or if using sass, change value of variables.
Comments
Post a Comment