Skip to content

Commit 1b0de9d

Browse files
committed
Replace logo images with SVG text in header and footer
Replaced the image-based logos in the header and footer of `_Layout.cshtml` with SVG text. The header now displays "SeattleU eShop" in black Verdana font, size 24, and the footer displays the same text in white Verdana font, size 23. The `<img>` tag in the footer without a `src` attribute is retained but will not display anything.
1 parent 5e3e949 commit 1b0de9d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Identity.API/Views/Shared/_Layout.cshtml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
<div class="eshop-header-container">
2525
<nav class="eshop-header-navbar">
2626
<a href="@Configuration["WebAppClient"]" class='logo logo-header'>
27-
<img alt="SeattleU eShop" src='/images/logo-header.svg' />
27+
<svg width="200" height="100" xmlns="http://www.w3.org/2000/svg">
28+
<text x="10" y="50" font-family="Verdana" font-size="24" fill="black">SeattleU eShop</text>
29+
</svg>
2830
</a>
2931
</nav>
3032
</div>
@@ -37,7 +39,10 @@
3739
<footer class='eshop-footer'>
3840
<div class='eshop-footer-content'>
3941
<div class='eshop-footer-row'>
40-
<img role="presentation" src='/images/logo-footer.svg' class='logo logo-footer' />
42+
<svg width="200" height="100" xmlns="http://www.w3.org/2000/svg">
43+
<text x="10" y="50" font-family="Verdana" font-size="23" fill="white">SeattleU eShop</text>
44+
</svg>
45+
<img role="presentation" class='logo logo-footer' />
4146
<p>© SeattleU eShop</p>
4247
</div>
4348
</div>

0 commit comments

Comments
 (0)