Jump to content

[Solved]Custom Cms Block Not Responsive


Recommended Posts

When trying the responsivity of Custom cms info block, the  facebook block shows but the about section of cms infoblock gets cut off on the small screen..

 

The overflow is hidden but when I set it to auto I get a scrollbar. How can I adjust the size of the box so the overflow shows nicely and it all stacks properly?

Edited by KathleenUK (see edit history)
Link to comment
Share on other sites

SOLVED! It works! Thank you :)!! Just had to adjust min height so there's no gap at the bottom of facebook block column. For anyone that might need it it's in there:

#facebook_block,
#cmsinfo_block {
  overflow: hidden;
  background: #f2f2f2;
  min-height: 374px;
  /*height: 344px;*/
  padding-right: 29px;
  padding-left: 29px; }
  @media (max-width: 991px) {
    #facebook_block,
    #cmsinfo_block {
      min-height: 404px;
      /*height: 354px;*/
      padding-left: 13px;
      padding-right: 13px; } }
  @media (max-width: 767px) {
    #facebook_block,
    #cmsinfo_block {
      width: 100%;
      min-height: 1px; } }
  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...