javascript - Twitter Bootstrap's responsive design -
on phone, text in hero unit here doesn't fit well. want wrap or shrink or something. suggestions details on implementation? thanks.
if want shrink it, 1 option redefine h1 size , possibly hero padding small screens. default both 60px, use media queries
@media (max-width: 767px){ .hero-unit h1 { font-size: 40px; } .hero{ padding:40px; } } you might need play padding, font size , viewport max-width results want, should started.
good luck
Comments
Post a Comment