frontend.css.php 358 B

12345678910
  1. <?php if ( $settings->title_size == 'custom' ) : ?>
  2. .fl-builder-content .fl-node-<?php echo $id; ?> .fl-cta-title {
  3. font-size: <?php echo $settings->title_custom_size; ?>px;
  4. }
  5. <?php endif; ?>
  6. <?php if ( is_numeric( $settings->spacing ) ) : ?>
  7. .fl-node-<?php echo $id; ?> .fl-module-content {
  8. padding: <?php echo $settings->spacing; ?>px;
  9. }
  10. <?php endif; ?>