I am trying to add a line of code so that an image appears in my website's sidebar. I am editing the "SIDEBAR" section. I've included a copy of the code I'm using, the actual file path of the image source, and a copy of the css page's complete code from top to bottom.
Can anyone read this and tell me where my mistake is coming from? So far I am only getting it to acknowledge the ALT text but it omits the image....
My code looks like this:
<img src="sidebar-ad1.png"; alt="New art is added daily! Don't forget to browse our templates for the newest in trends, styles and seasonal designs." />
***NOTE - FILE PATH IF NEEDED***
('App_Themes/Peacock/img/sidebar-ad1.png')
___________________________
ACTUAL FULL CODE FROM CSS:
<%@ Master Language="VB" MasterPageFile="~/PrintnowDisplay.Master" AutoEventWireup="false" CodeBehind="PrintnowHomeDisplay.master.vb" Inherits="Printnow.PrintnowHomeDisplay" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cpHead" runat="server">
<asp:ContentPlaceHolder ID="cpHead" runat="server" />
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="cpMainBody" runat="server">
<div class="maincontenthome">
<asp:Panel ID="pnlBanner" runat="server">
<asp:ContentPlaceHolder ID="cpBannerContent" runat="server" />
</asp:Panel>
<asp:Panel ID="pnlMainContent" runat="server" CssClass="homecontent">
<asp:ContentPlaceHolder ID="cpMainContent" runat="server" />
</asp:Panel>
</div>
<asp:Panel ID="pnlSidebar" runat="server" CssClass="sidebar">
<asp:ContentPlaceHolder ID="cpSideBar" runat="server" />
<img src="sidebar-ad1.png"; alt="New art is added daily! Don't forget to browse our templates for the newest in trends, styles and seasonal designs." />
</asp:Panel>
<div style="clear: both"></div>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="cpTitleBar" runat="server">
<asp:ContentPlaceHolder ID="cpTitleBar" runat="server" />
</asp:Content>
____________________________