I'm in the fight to make a website and present it in my TCC. I separated the sections of the site (body, head, header, footer ...) into isolated files to be able to move more easily. I took great care to separate all the right elements in each file. They appear on the site because my index.php page has include_once()
of those pages.
The problem starts here: My menu-lateral.php file is getting unconfigured in its mobile version. It contains the Facebook Like Buttons, Follow Twitter Profile, Flickr Link and YouTube Page Signup button.
Apparently, the problem is with the enjoy button on Facebook. Whenever the site is in its desktop version, no problem, it's all right:
Now,inthemobileversion,itlookslikethis(followsphoto).Thebuttonislargerthanitshouldandgoingfromdiv
oftheEmenutoaddingahugespacetothebodyofthepage.
HowshouldIstay:
Theotherbuttonswillbereplacedwithimages,however,IwanttocontinuewiththeFacebookbutton.Iwanttoknowifitispossibleto:1)fixthespaceprobleminthemobileversion;2)Leavebuttonsizeresponsive.
Followthemenu-lateral.phpcode:
<divclass="col-xs-6 col-sm-3 sidebar-offcanvas" id="sidebar">
<div class="list-group">
<div class="list-group-item">
<!-- Facebook -->
<div class="fb-page jumbo-img" data-href="https://www.facebook.com/ibnovomundo" data-small-header="true" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true" data-show-posts="false" data-layout="box_count">
<div class="fb-xfbml-parse-ignore">
<blockquote cite="https://www.facebook.com/ibnovomundo">
<a href="https://www.facebook.com/ibnovomundo">IBNM - Igreja Batista Novo Mundo</a>
</blockquote>
</div>
</div>
</div>
<center>
<div class="list-group-item">
<!-- Twitter -->
<a class="twitter-follow-button jumbo-img" data-size="large" data-show-count="false" href="https://twitter.com/ibnovomundo">Siga @ibnovomundo no Twitter</a>
</div>
<center>
<div class="list-group-item">
<!-- YouTube -->
<div class="g-ytsubscribe list-group-item jumbo-img" data-channel="batistanovomundo2" data-layout="full" data-count="hidden"></div>
</div>
<center>
<div class="list-group-item">
<!-- Flickr -->
<a href="http://www.flickr.com/photos/ibnovomundo2/" title="Veja nossas fotos no Flickr!"><img src="https://s.yimg.com/pw/images/goodies/white-see-my-photos_pt.png"class="jumbo-img" alt="Veja nossas fotos no Flickr!"></a>
</div>
</center>
<center>
<div class="list-group-item">
<!-- App -->
</div>
</center>
</div>
</div>