Skip to content

Commit

Permalink
Disable <h1> font size when logo present
Browse files Browse the repository at this point in the history
See wpexpertsio#43 for details.
  • Loading branch information
AlecRust authored Jan 3, 2022
1 parent 61f7fd7 commit 86425ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/templates/partials/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
padding: 28px 24px;
display:block;
font-family:Arial;
font-size: ".$settings['header_text_size']."px;
font-size: ". (empty($settings['header_logo']) ? $settings['header_text_size'].'px' : "0px") .";";
font-weight:bold;
text-align:".$settings['header_aligment'].";
line-height: 150%;
Expand Down Expand Up @@ -126,4 +126,4 @@
<table border="0" cellpadding="20" cellspacing="0" width="100%">
<tr>
<td valign="top">
<div style="<?php echo $body_content_inner; ?>" id="mailtpl_body">
<div style="<?php echo $body_content_inner; ?>" id="mailtpl_body">

0 comments on commit 86425ed

Please sign in to comment.