Page 1 of 1

Title image not showing up [Fixed]

Posted: Thu Oct 29, 2009 5:23 pm
by Menelaos
I have been trying to get the title image on my site to work, but for some reason I can't seem to get it to show up on my site.
I saved my title in my images folder as title.jpg, like I'm supposed to. Then I included <img scr="/images/title.jpg"> into my index and daily templates (in workspace), but for some reason it hasn't shown up. It was between comic name and author, then right after comic name. Still it doesn't seem to have any effect. I have been moving the code for the image around for a while now, currently it reads:
</head><body>
<script type="application/javascript" src='http://forums.comicgenesis.com/cg_header.js'></script>
<div class="keen_ad" style="display:inline;">
***advertisement***
</div>
<div class="main"><img scr="/images/title.jpg">
<h1>***comic_name***</h1>
<h2>by ***author***</h2>
***todays_comics***
<br />
It's not showing up, I have been trying to fix this for a while so I finally decided to get some help. I am new here, the solution may seem obvious but I have only had my comic up for a week or two.
My website is http://relativity.comicgenesis.com

Re: Title image not showing up

Posted: Fri Oct 30, 2009 8:49 am
by Somechick_73
<img scr="/images/title.jpg">

Should be <img src="/images/title.jpg">

Re: Title image not showing up

Posted: Fri Oct 30, 2009 2:04 pm
by Menelaos
Somechick_73 wrote:<img scr="/images/title.jpg">

Should be <img src="/images/title.jpg">
Okay, I'll try that. Hope that's it.

Re: Title image not showing up

Posted: Fri Oct 30, 2009 5:55 pm
by Somechick_73
Menelaos wrote:
Somechick_73 wrote:<img scr="/images/title.jpg">

Should be <img src="/images/title.jpg">
Okay, I'll try that. Hope that's it.
I'm pretty sure it is. Always has to be SRC and not SCR.

Re: Title image not showing up

Posted: Sat Oct 31, 2009 12:50 am
by Ozydius
One tiny error.

<img src="/images/title.jpg">

Should be :

<img src="/images/title.jpg" />


All html tags close with /> Please do remember this.

Re: Title image not showing up

Posted: Sat Oct 31, 2009 2:49 pm
by Menelaos
wow, I feel stupid. that did the trick. Thank you!