mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Fixed enormous site icon issue in Outlook (#17672)
refs https://github.com/TryGhost/Product/issues/3704 - the site icon has sizes defined in CSS and it works great for most browsers - but it becomes very large in Outlook and it requires explicit sizes in the image markup for some reason
This commit is contained in:
parent
e534e2ee2e
commit
2a8c09e3d4
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@
|
|||
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
|
||||
{{#if (and showHeaderIcon site.iconUrl) }}
|
||||
<tr>
|
||||
<td class="site-icon"><a href="{{site.url}}"><img src="{{site.iconUrl}}" alt="{{site.title}}" border="0"></a></td>
|
||||
<td class="site-icon"><a href="{{site.url}}"><img src="{{site.iconUrl}}" alt="{{site.title}}" border="0" width="48" height="48"></a></td>
|
||||
</tr>
|
||||
{{/if}}
|
||||
{{#if showHeaderTitle }}
|
||||
|
|
Loading…
Add table
Reference in a new issue