Files
ultimatemember/assets/dynamic_css/dynamic_global.php
T
nikitozzzzzzz d935f46e1c - hotfixes;
2018-11-18 23:15:06 +02:00

18 lines
278 B
PHP

<style type="text/css">
<?php
if ( isset( $max_width ) && $max_width) {
print ".um-$form_id.um {
max-width: $max_width;
}";
}
if ( isset( $align ) && in_array( $align, array( 'left', 'right' ) ) ) {
print ".um-$form_id.um {
margin-$align: 0px !important;
}";
}
?>
</style>