I've developed a half-dozen wordpress websites but this is my first foray into thematic. It's tough to get your hands around the whole concept, but I'm fighting my way through it.
But I'm stumped on something simple.
I've added a header function and I reference an image in the html. But the image never shows up in the rendered page. I can reference the images fine from the CSS, but apparently not from the HTML I inserted in the header (which shows up fine in the source, it's just not finding the image).
Here is my html:
<div class="logo"><a>"><?php bloginfo('name'); ?><img src="<?php bloginfo('url'); ?>/images/layout/LCC_Logo.jpg" alt="course" border="0" /></a></div>
Here is my CSS which accesses images fine:
background-image:url(images/layout/searchBg.jpg);
I'm determined to work my way through the learning curve. Thematic look pretty powerful if I can just get by a few stumbling blocks.