Img Src correct, but still not working in index.php

admin

Administrator
Staff member
I believe I've correctly sourced an image in html for a (super-basic) wordpress theme I am developing; however it still does not display.

This dialogue:
<a href="https://stackoverflow.com/questions/15102122/img-src-on-local-computer">Img Src on local computer</a>
shows the process so far (whereby I've been reassured the html is correct.)

body of index.php:

Code:
&lt;?php
    $main_menu_column_top = array(
        'theme_location' =&gt; 'main-nav-column-top',
        'container' =&gt; 'nav',
        'container_class' =&gt; 'alignleft widecol',
        'container_id' =&gt; 'column-main-nav',
        'depth' =&gt; 1
    );
?&gt;

&lt;div class="leftcolumn"&gt;
    &lt;div class="logo"&gt;
        &lt;a href="http://www.petermaurin.com"&gt;
        &lt;img src="images/pmsplogo.jpg" alt="Peter Maurin Screenprinters"/&gt;&lt;/a&gt;
    &lt;/div&gt;&lt;!--logo--&gt;

    &lt;div&gt;
        &lt;ul&gt;
            &lt;h1&gt;&lt;?php wp_nav_menu ( $main_menu_column_top ); ?&gt;&lt;/h1&gt;
        &lt;/ul&gt;
    &lt;/div&gt;
&lt;/div&gt;

&lt;div class="maincontent"&gt;

    &lt;?php 
        if (have_posts()) :
            while (have_posts()) :
                the_post();
                the_title();
                the_content();
            endwhile;
        endif;
    ?&gt;

    &lt;/div&gt;&lt;!-- maincontent --&gt;

functions.php:

Code:
&lt;?php
register_nav_menus(
        array(
        'main-nav-column-top' =&gt; 'Main Nav, Top of Header',
        'sub-nav-column-bottom' =&gt; 'Sub Nav, Bottom of Header',
        'footer-nav' =&gt; 'Footer Menu'
    )
);

css:

<pre class="lang-css prettyprint-override">
Code:
* {
margin: 0;
padding: 0;
}

p {
font-family: Times New Roman;
}

body {
    font-size: 100%;
    font-family: sans-serif;
    background: url(images/tshirttexture.jpg) left repeat-y #0099ff;
}

.leftcolumn{
    width:365px;    
    float:left;
}

.maincontent{
    background-color:green;
    margin-left: 375px;
    max-width: 600px;
}

... if anyone can take a look and let me know why my image ('pmsplogo.jpg' on line 26 of index.php) is not displaying, I'd be very grateful!