we did checked your site but as we see, gallery is fully responsive of course. However, if h3 texts are not responsive, you can break words with the following css:
h3 { word-wrap: break-word !important; }
Or you can play with the following css's yourself as well to decrease fonts on smaller devices:
@media only screen and (max-width: 767px) { h3 { font-size: 12px !important; } }
Comments
we did checked your site but as we see, gallery is fully responsive of course. However, if h3 texts are not responsive, you can break words with the following css: Or you can play with the following css's yourself as well to decrease fonts on smaller devices: More details about @media only screen rules you can read on http://www.w3schools.com/cssref/css3_pr_mediaquery.asp