# meow-gallery/5.5.5/classes/builders/horizontal.css.php

Meow Gallery, version 5.5.5. 27 lines.

- Page: https://pluginprobe.com/plugins/meow-gallery/5.5.5/code/classes/builders/horizontal.css.php
- Raw: https://pluginprobe.com/plugins/meow-gallery/5.5.5/raw/classes/builders/horizontal.css.php
- Modified: 2023-10-23T10:43:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/meow-gallery/5.5.5/code/classes/builders/horizontal.css.php#L10-L20`.

```php
<style>

	<?php echo esc_attr( $class_id ) ?> {
		min-height: <?php echo $image_height ?>px;
	}

	<?php echo esc_attr( $class_id ) ?> .meow-horizontal-track {
		height: <?php echo $image_height ?>px;
	}

	<?php echo esc_attr( $class_id ) ?> .meow-horizontal-prev-btn, <?php echo esc_attr( $class_id ) ?> .meow-horizontal-next-btn {
		top: <?php echo $image_height/2 ?>px;
	}

	<?php echo esc_attr( $class_id ) ?> .mgl-item {
		padding: 0 <?php echo (int)$gutter - 20 ?>px;
	}

	<?php echo esc_attr( $class_id ) ?> .mgl-item figcaption {
		width: calc(100% - <?php echo (int)$gutter*2 ?>px);
		padding: 0 <?php echo (int)$gutter / 2 ?>px;
		left: <?php echo (int)$gutter / 2 ?>px;
		bottom: <?php echo (int)$gutter / 2 ?>px;
	}

</style>

```
