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

Meow Gallery, version 4.2.4. 26 lines.

- Page: https://pluginprobe.com/plugins/meow-gallery/4.2.4/code/classes/builders/horizontal.css.php
- Raw: https://pluginprobe.com/plugins/meow-gallery/4.2.4/raw/classes/builders/horizontal.css.php
- Modified: 2022-02-25T01:14:12+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/4.2.4/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 / 2 ?>px;
	}

	<?php echo esc_attr( $class_id ) ?> .mgl-item figcaption {
		width: calc(100% - <?php echo (int)$gutter ?>px);
		padding: 0 <?php echo (int)$gutter / 2 ?>px;
		left: <?php echo (int)$gutter / 2 ?>px;
	}

</style>

```
