Keine Beschreibung

general-style.php 578B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * General style template.
  4. *
  5. * This template can be overridden by copying it to yourtheme/wpforms/emails/general-style.php.
  6. *
  7. * @since 1.5.4
  8. *
  9. * @version 1.5.4
  10. *
  11. * @var string $email_background_color
  12. */
  13. if ( ! \defined( 'ABSPATH' ) ) {
  14. exit;
  15. }
  16. require \WPFORMS_PLUGIN_DIR . '/assets/css/emails/general.min.css';
  17. ?>
  18. body, .body {
  19. background-color: <?php echo \esc_attr( $email_background_color ); ?>;
  20. }
  21. <?php if ( ! empty( $header_image_max_width ) ) : ?>
  22. .header img {
  23. max-width: <?php echo \esc_attr( $header_image_max_width ); ?>;
  24. }
  25. <?php endif; ?>