front page looks wierd.

For requests for help from CG administrators, Wranglers, and experienced CG members. Please read the FAQ before posting. Also look at CG Wiki for tutorials and how-tos written by other CG webtoonists.
Post Reply
User avatar
Tac00
Regular Poster
Posts: 90
Joined: Fri Dec 21, 2007 9:26 pm

front page looks wierd.

Post by Tac00 »

yoyoboy.comicgenesis.com

can anyone tell me why my front page looks wierd.
Image

User avatar
Dr Neo Lao
Cartoon Hero
Posts: 2397
Joined: Wed Oct 18, 2006 5:21 am
Location: Australia

Re: front page looks wierd.

Post by Dr Neo Lao »

You have an odd line in your code. It looks like this:

Code: Select all

<link rel="alternate" title=<IMG SRC="title.gif">href="/rss.xml"type="application/rss+xml"/>
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" type="application/rss+xml" title="Yoyo Boy - RSS" href="http://yoyoboy.comicgenesis.com/rss.xml" />

User avatar
Tac00
Regular Poster
Posts: 90
Joined: Fri Dec 21, 2007 9:26 pm

Re: front page looks wierd.

Post by Tac00 »

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?
Image

User avatar
Dr Neo Lao
Cartoon Hero
Posts: 2397
Joined: Wed Oct 18, 2006 5:21 am
Location: Australia

Re: front page looks wierd.

Post by Dr Neo Lao »

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:

Code: Select all

<BODY BACKGROUND="/images/ground.gif" BGPROPERTIES="fixed">
The reason it's not showing up is probably because:
  1. the image is not called ground.
  2. the image is not a gif (might be a jpg or a png).
  3. the image is not in the images folder.
  4. the image has a different case (Ground.gif or ground.GIF or GROUND.gif)

User avatar
Tac00
Regular Poster
Posts: 90
Joined: Fri Dec 21, 2007 9:26 pm

Re: front page looks wierd.

Post by Tac00 »

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.
Image

User avatar
Dr Neo Lao
Cartoon Hero
Posts: 2397
Joined: Wed Oct 18, 2006 5:21 am
Location: Australia

Re: front page looks wierd.

Post by Dr Neo Lao »

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:

Code: Select all

<img src="/images/logo.jpg">
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:

Code: Select all

<center>
... stuff like the comic image ...
</center>
around what you want to be centered.

Post Reply