Smack Jeeves Templates Guide

Working on a new template and need help? Come here for support.

Re: Smack Jeeves Templates Guide

Postby Mr Aids » October 25th, 2009, 3:22 am

User avatar
Mr Aids
 
Posts: 476
Joined: April 9th, 2007, 7:02 pm
Location: Australia. I think.

Re: Smack Jeeves Templates Guide

Postby aztheg » November 3rd, 2009, 1:03 am

Is it possible to edit the default nav links? Those.. "First Comic" "Latest Comic"..

Thanks!
Image
User avatar
aztheg
 
Posts: 12
Joined: April 19th, 2009, 11:57 pm

Re: Smack Jeeves Templates Guide

Postby Mr Aids » November 3rd, 2009, 1:11 am

Do you mean your menu or the comic navigation links on your comic pages?

And if it's the latter do you want to replace it with text or images?
User avatar
Mr Aids
 
Posts: 476
Joined: April 9th, 2007, 7:02 pm
Location: Australia. I think.

Re: Smack Jeeves Templates Guide

Postby aztheg » November 3rd, 2009, 1:22 am

Mr Aids wrote:Do you mean your menu or the comic navigation links on your comic pages?

And if it's the latter do you want to replace it with text or images?


uhmm.. the header menu.. no, just replace texts.. like.. "First Page/ Beginning" "Latest Page" something like that..

Thanks for the response! :)
Image
User avatar
aztheg
 
Posts: 12
Joined: April 19th, 2009, 11:57 pm

Re: Smack Jeeves Templates Guide

Postby Mr Aids » November 3rd, 2009, 1:34 am

Alrighty, first go to your menu code.

You will probably find this:

Code: Select all
<ul>
<!-- BEGIN links -->
   <li><a href="{links.URL}">{links.TEXT}</a></li>
<!-- END links -->
</ul>


You will have to remove the <!-- BEGIN links --> and <!-- END links -->, and use the code for links provided there, put in manually every link you want in your menu. An example of this could look like:

Code: Select all
<ul>
<li><a href="www.yourcomic.smackjeeves.com">Home</a></li>
<li><a href="www.yourcomic.smackjeeves.com/comics">Latest Page</a></li>
<li><a href="www.yourcomic.smackjeeves.com/archive">Archive</a></li>
</ul>


That is not a complete menu, but you get the idea. Give us a yell if you're having any problems or if my explanation sucks.
User avatar
Mr Aids
 
Posts: 476
Joined: April 9th, 2007, 7:02 pm
Location: Australia. I think.

Re: Smack Jeeves Templates Guide

Postby aztheg » November 3rd, 2009, 2:01 am

ooh gotcha man! was lookin for the codes for the default link.. now i know that's it.. hehe..

Thanks sir! no prob.. gonna post here again if something went wrong.. thanks..
Image
User avatar
aztheg
 
Posts: 12
Joined: April 19th, 2009, 11:57 pm

Re: Smack Jeeves Templates Guide

Postby Mr Aids » November 3rd, 2009, 2:12 am

Glad to help out.
User avatar
Mr Aids
 
Posts: 476
Joined: April 9th, 2007, 7:02 pm
Location: Australia. I think.

Re: Smack Jeeves Templates Guide

Postby aztheg » November 4th, 2009, 10:08 am

the link to latest comic is updating everytime you post a new page right? should I change the URL of the Latest Page everytime I post a new page?


Thanks again!
Image
User avatar
aztheg
 
Posts: 12
Joined: April 19th, 2009, 11:57 pm

Re: Smack Jeeves Templates Guide

Postby Mr Aids » November 4th, 2009, 10:56 pm

Nah, the url for the latest page should be:

www.yourcomic.smackjeeves.com/comics/

That will take the reader to the latest comic.
User avatar
Mr Aids
 
Posts: 476
Joined: April 9th, 2007, 7:02 pm
Location: Australia. I think.

Re: Smack Jeeves Templates Guide

Postby Skittsue » November 5th, 2009, 7:57 pm

Okay. So I made a background, but I have no idea how to put it on my site. I just want to make it the background of the format I already have, but keep it simple, because I'm computer retarded. :D
User avatar
Skittsue
 
Posts: 1
Joined: June 14th, 2009, 11:53 pm

Re: Smack Jeeves Templates Guide

Postby Mr Aids » November 5th, 2009, 8:08 pm

I am assuming you have already uploaded a suitable background tile to an imagehost, and have grabbed the direct url.

Alrighty, go to your Overall Layout, find your CSS, and paste this underneath the stylesheet:

Code: Select all
body
{
font-family:Century Gothic, Arial, Georgia, Trebuchet MS;
padding:0;
margin:0;
background:url("") #ffffff;
}


Now paste the url between the empty background quotes, and you will have a repeating background, however this will eliminate the whole checker pattern at the top.

Tell me if you have any problems.
User avatar
Mr Aids
 
Posts: 476
Joined: April 9th, 2007, 7:02 pm
Location: Australia. I think.

Re: Smack Jeeves Templates Guide

Postby aztheg » November 18th, 2009, 9:15 am

uhhmm.. any link of codes how to make a gallery or character page? like.. you will click a thumbnail then it will view the character.. uhmm.. with no tables.. simple centered thumbnails..

uhmm.. sample -> http://metalbreakdown.smackjeeves.com/fanart this is one of my fave.. or like this.. http://rfr.smackjeeves.com/characters/

thanks a bunch!
Image
User avatar
aztheg
 
Posts: 12
Joined: April 19th, 2009, 11:57 pm

Re: Smack Jeeves Templates Guide

Postby Pyroman » November 19th, 2009, 7:58 pm

Upload a full version and a thumbnail version of all of your images to an imagehost, like http://imageshack.us or http://photobucket.com
Link each thumbnail to it's larger counterpart like so:
Code: Select all
<a href="LARGE URL"><img src="THUMB URL" alt="DESCRIPTION" /></a>


Now drop them inside this code

Code: Select all
<div align="center">

Links hereeeee

</a>


That should do it. It's not particularly glamorous coding, but I don't want to do a bunch of confusing directions when that'll do.
ImageImage
ImageImage
Image
User avatar
Pyroman
 
Posts: 789
Joined: January 28th, 2006, 12:40 am
Location: Australia

Re: Smack Jeeves Templates Guide

Postby aztheg » November 19th, 2009, 8:22 pm

Pyroman wrote:Upload a full version and a thumbnail version of all of your images to an imagehost, like http://imageshack.us or http://photobucket.com
Link each thumbnail to it's larger counterpart like so:
Code: Select all
<a href="LARGE URL"><img src="THUMB URL" alt="DESCRIPTION" /></a>


Now drop them inside this code

Code: Select all
<div align="center">

Links hereeeee

</a>


That should do it. It's not particularly glamorous coding, but I don't want to do a bunch of confusing directions when that'll do.


ooh thanks thanks.. the code itself is what i really need.. thanks a lot =)
Image
User avatar
aztheg
 
Posts: 12
Joined: April 19th, 2009, 11:57 pm

Re: Smack Jeeves Templates Guide

Postby aztheg » November 20th, 2009, 4:30 am

uhhmm.. how bout changing a favicon? is it possible?
Image
User avatar
aztheg
 
Posts: 12
Joined: April 19th, 2009, 11:57 pm

PreviousNext

Return to Template Development & Support

Who is online

Users browsing this forum: No registered users and 1 guest