
IMG as a Logo
IMG as a Logo
I've had my comic for about a year now, and slowly started getting better at all of the site designing(not much with CSS), but I want to try putting in an image for a logo at the top of the page. Whenever I've tried putting an image in, when I load up my comic site, it rejects the image and spits up the alternative. I don't really know at all what I'm doing wrong. I've done what all the books and internet tutorials have told me, with the <img src="suchandsuchimage.png"> and it's never really worked. Can anyone help out? I'll load the image I want to put on my page in this post if I can...


- IVstudios
- Cartoon Hero
- Posts: 3660
- Joined: Sun Dec 14, 2003 11:52 am
- Location: My little office
- Contact:
Re: IMG as a Logo
It might be as simple as just emptying your cache and refreshing the page. Or you could be attempting to modify locked code. Or, if you'r using some sort of template, you could be naming the image wrong. It's hard to tell without seeing how your site is set up. What do you use to make your site? A WYSIWYG or do you work right in HTML? Or a Wordpress template?
If you link the page it'll be easier to tell what the problem might be.
If you link the page it'll be easier to tell what the problem might be.
- LibertyCabbage
- Cartoon Hero
- Posts: 4667
- Joined: Tue Jan 25, 2005 4:08 pm
- Location: bat country
- Contact:
Re: IMG as a Logo
(The site's here: http://misforai.comicgenesis.com )
The reason you're having issues, SturM, is because you're linking to the workspace folder, like this:
Instead, you should link to the images folder, which is the one inside /public_html/, like this:
The reason you're having issues, SturM, is because you're linking to the workspace folder, like this:
Code: Select all
<img src="http://misforai.comicgenesis.com/workspace/images/Titleimage.png">
Code: Select all
<img src="http://misforai.comicgenesis.com/images/Titleimage.png">