Philio / bootstrapdefault

A modern and responsive theme for Piwigo built with standard Bootstrap components and using the default Bootstrap theme. Intended for easy customisation using Bootstrap styles or as a parent theme for creating responsive themes for Piwigo.
https://philio.me
31 stars 10 forks source link

More space for album and categories #62

Open habakuk007 opened 7 years ago

habakuk007 commented 7 years ago

Hi, I like your theme.

But I would like it much more if you add another "More space" option for categories and albums and also hide the Jumbotron on them; so that the Jumbotron is only shown on the main page.

Regards! Stefan

axel3rd commented 5 years ago

As workaround, if you doesn't want display the jumbotron banner, you could fill as banner description in configuration (http://hostname/piwigo/admin.php?page=configuration&section=main) :

<script>
  var jumbotron = document.getElementsByClassName('jumbotron')[0];
  jumbotron.style.visibility = 'hidden';
  jumbotron.style.paddingTop = '0px';
  jumbotron.style.paddingBottom = '0px';
</script>