-1

I modified the _SiteLayout.cshtml file in my WebMatrix project so that it contains this line:

<p class="site-title"><a <img src="~/Images/Thumbnails/Landscapes/Fall_2012 10 14_0702_th.jpg" />your logo here</a></p>

...but the image is not displaying. Why wouldn't it?

B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862

1 Answers1

2

You have:

<a <img src="(snip)" />your logo here</a>

You should have:

<a><img src="(snip)" />your logo here</a>
tckmn
  • 57,719
  • 27
  • 114
  • 156