yoyoboy.comicgenesis.com
can anyone tell me why my front page looks wierd.
front page looks wierd.
- Dr Neo Lao
- Cartoon Hero
- Posts: 2397
- Joined: Wed Oct 18, 2006 5:21 am
- Location: Australia
Re: front page looks wierd.
You have an odd line in your code. It looks like this:
It looks like two different things have been blended together: an image and the rss feed.
Your best bet is probably to just remove the whole line until you are sure you know what it is that you want in that spot. If you want an rss feed, it should look like this:
Code: Select all
<link rel="alternate" title=<IMG SRC="title.gif">href="/rss.xml"type="application/rss+xml"/>Your best bet is probably to just remove the whole line until you are sure you know what it is that you want in that spot. If you want an rss feed, it should look like this:
Code: Select all
<link rel="alternate" type="application/rss+xml" title="Yoyo Boy - RSS" href="http://yoyoboy.comicgenesis.com/rss.xml" />Re: front page looks wierd.
well i just want my backround and logo to show up like on my other pages.i put that code in the index template right?
- Dr Neo Lao
- Cartoon Hero
- Posts: 2397
- Joined: Wed Oct 18, 2006 5:21 am
- Location: Australia
Re: front page looks wierd.
The background goes into the Body tag, not in the head (unless you are using a stylesheet, which you're not).
You already have it specified, here:
The reason it's not showing up is probably because:
You already have it specified, here:
Code: Select all
<BODY BACKGROUND="/images/ground.gif" BGPROPERTIES="fixed">- the image is not called ground.
- the image is not a gif (might be a jpg or a png).
- the image is not in the images folder.
- the image has a different case (Ground.gif or ground.GIF or GROUND.gif)
Re: front page looks wierd.
thanks doc. the gif was from my other web comic, some how it copyed and pasted there. now only too things are still wrong. im trying to put my yoyoboy and cheese man logo up. does it go in the comic header one? and im trying to alighn my comic but i think i can do that.
- Dr Neo Lao
- Cartoon Hero
- Posts: 2397
- Joined: Wed Oct 18, 2006 5:21 am
- Location: Australia
Re: front page looks wierd.
If by logo you mean a banner, they are relatively straightforward.
It goes after the Body tag and after the ***advertisement*** tag. You would use something like:
And just put it wherever you want the logo to show up. As for aligning the comic, it depends on which way you want to align it. The "easy" way is to put it in the middle by having:
around what you want to be centered.
It goes after the Body tag and after the ***advertisement*** tag. You would use something like:
Code: Select all
<img src="/images/logo.jpg">Code: Select all
<center>
... stuff like the comic image ...
</center>