removing bs gallery and rebuild

This commit is contained in:
Holger Könemann 2016-12-07 09:14:35 +01:00
parent 57777e4eaa
commit 552ff49d63
3 changed files with 12 additions and 5 deletions

View File

@ -5051,6 +5051,11 @@ button,
[type="submit"] { [type="submit"] {
cursor: pointer; } cursor: pointer; }
.gallery:after {
content: "";
display: table;
clear: both; }
/*! /*!
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)

View File

@ -62,11 +62,6 @@ require get_template_directory() . '/inc/jetpack.php';
*/ */
require get_template_directory() . '/inc/bootstrap-wp-navwalker.php'; require get_template_directory() . '/inc/bootstrap-wp-navwalker.php';
/**
* Load custom WordPress gallery.
require get_template_directory() . '/inc/bootstrap-wp-gallery.php';
*/
/** /**
* Load WooCommerce functions. * Load WooCommerce functions.
*/ */

View File

@ -161,3 +161,10 @@ button,
[type="submit"] { [type="submit"] {
cursor: pointer; cursor: pointer;
} }
// Clearing after gallery
.gallery:after {
content: "";
display: table;
clear: both;
}