A little help please?

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
NotDead
Newbie
Posts: 15
Joined: Thu May 13, 2004 7:51 am
Contact:

A little help please?

Post by NotDead »

hey guys.

whats the easiest way to keep updates with the strips they go with like id i have a may 5th strip and i have a text update/news thing for that week how do i get them to stay with that strip when you go from strip to strip?? whats the easiest way?

chris.
Image
Image

User avatar
Mercury Hat
Iron Lady (ForumAdmin)
Iron Lady (ForumAdmin)
Posts: 5608
Joined: Sat Jan 24, 2004 1:57 pm
Location: Hello city.
Contact:

Post by Mercury Hat »

For a comic that's 20040505.whatever then make a text file, put all the news in it, save it as 20040505b.txt and put it in the comic folder like you're putting in a new comic. Run a manual update and they'll be on the same page together if I've got this right.
ImageImage
<Legostar> merc is all knowing, all seeing, and not caring

User avatar
NotDead
Newbie
Posts: 15
Joined: Thu May 13, 2004 7:51 am
Contact:

Post by NotDead »

will it fit in with my layout or do i just put the whole source code in the text file and put the update text where i want it or what? how do i get iyt to fit in with the layout?
Image
Image

User avatar
Mercury Hat
Iron Lady (ForumAdmin)
Iron Lady (ForumAdmin)
Posts: 5608
Joined: Sat Jan 24, 2004 1:57 pm
Location: Hello city.
Contact:

Post by Mercury Hat »

It should conform to the layout of the page, it'll get put under the comic. You can add in html in the file to put up links, format it differently and what-have-you if you want.
ImageImage
<Legostar> merc is all knowing, all seeing, and not caring

User avatar
NotDead
Newbie
Posts: 15
Joined: Thu May 13, 2004 7:51 am
Contact:

Post by NotDead »

ok i got the updates working on my archive likeyou said but i cant get it to look quite like the front page "indextemp" heres the index temp

http://notdead.keenspace.com/

and heres my archive page for that same strip

http://notdead.keenspace.com/d/20040525.html

notice the difference? the directionals are in different places i want them all like the indextemp.

oh and also for my archive i have it listed by date is there any way i can get them to list it by title of comic say if i had titles?

thanks guys
Image
Image

User avatar
Joel Fagin
nothos adrisor (GTC)
Posts: 6014
Joined: Mon Mar 29, 2004 1:15 am
Location: City of Lights
Contact:

Post by Joel Fagin »

NotDead wrote:oh and also for my archive i have it listed by date is there any way i can get them to list it by title of comic say if i had titles?
Nope. Not unless you make and update the archive page manually - which isn't too much work, really. It's possible you might be able to wrangle it through Javascript but I don't think so. Well, if you can, then it's certainly beyond me.

- Joel Fagin
Image

User avatar
YarpsDat
Cartoon Hero
Posts: 3637
Joined: Wed Oct 30, 2002 5:28 am
Location: nowhere

Post by YarpsDat »

NotDead wrote: notice the difference? the directionals are in different places i want them all like the indextemp.
The only difference I see is the lack of "Howdy all.." ect. on the archived page.
BTW, you still have that silly thing:

Code: Select all

<div id="Layer1" style="position:absolute; left:265px; top:9px; width:140px; height:6px; z-index:1"> 
As far as I can tell (well, your html is complicated so I can't be sure) this is the <div> that contains the main body of your site. (the comic, navigation and rant)
Notice the "width:140px;" - it makes no sence!
The first thing you put in is a 720px wide image, so the browser inflates the div to be wide.
BUT, it is possible for the browser to have a different defaults set, and it could just clip your image to the size.

Next thing:

Code: Select all

<div id="Layer2" style="position:absolute; left:112px; top:104px; width:152px; height:129px; z-index:2"> 
this is the div with the votebuttons and other links.
Notice the "left:112px;" - it makes very little sence!
For some reason you want 112px of white space on the left side of your comic. What for dude?
BTW, what is your screen resolution? Because I suspect you did it to center the site on screen, but for me it almost pushes the comic off the screen, and it looks annoing.


I don't see a reason for you to use the position:absolute;
What would be wrong with a setting like this (apart from it using tables, and <center> tag...):

Code: Select all

<center><table>
<tr><td colspan="2">***advertisement***</td></tr>
<tr><td>ADVERTISE, vote buttons, and other stuff</td>
<td>The comic, navigation, rant</td></tr></table></center>
You are the Non. You must go now, and never return."

"1.Scan in high res 2.tweak with curves,levels or something to clean up the scan (or use channel mixer to remove blue pencil lines) 3.Add colour using a layer set to multiply. 4.Add wordbubbles and text as vector shapes. 5. Merge all layers. 6.resize to the web size. 7. Export/Save for Web" that's all I know about webcomicking.

User avatar
RPin
Gentleman Pornographer
Posts: 2930
Joined: Fri Jul 18, 2003 8:12 am
Location: I'm off to Brazil, bitches!
Contact:

Post by RPin »

I assume you must be using Dreamweaver to design your page.

Div layers are to complicated too work without it. Anyways, like Yarps Said, I see no difference between the two except for the lack of rant.

To make the rants in your archive look like your main page, you should put all the code that goes below the ***todays_comic*** in a txt file (say, 20040225b.txt) so it gets included in your html.

It's what I do. The navigation bar of my comic is not part of the indextemplate, they go in two txt files named yyyymmdda.text and yyyymmddc.txt, being yyyymmddb the comic itself.

Post Reply