Log In · Register

 
 
Closed TopicStart new topic
pamelajoy's opal tourial? help please!
secondstereo
post Jul 3 2005, 05:09 PM
Post #1


Newbie
*

Group: Member
Posts: 8
Joined: Jul 2005
Member No: 164,919



Hey, I was wondering if anyone here had previously used pamelajoy's opal tutorial, found here: http://www.livejournal.com/users/pamelajoy/295461.html

Her website is down, and so I can't download the .zip file that I need to see the tutorial. Does anyone have it saved on their computer? Or another tutorial that is similar?

Thanks in advance!
 
jordanriane
post Jul 3 2005, 05:23 PM
Post #2


when we speak, we breathe
******

Group: Member
Posts: 1,635
Joined: Jan 2005
Member No: 91,760



Her domain is down for good. But I'll let her know that the file is down, and see if she'll replace it so it will work.

You can go to opal_help for future issues related to opal (or post a thread here.)

There is also another tutorial for Opal here.
 
secondstereo
post Jul 3 2005, 05:25 PM
Post #3


Newbie
*

Group: Member
Posts: 8
Joined: Jul 2005
Member No: 164,919



I've been to opal_help, and no one has helped. And ignited's tutorial is fine, and I used that.. but I would like to use the overrides that are in pamelajoy's tutorial and I can't find them anywhere else.... I guess I give up. mad.gif
 
jordanriane
post Jul 3 2005, 05:28 PM
Post #4


when we speak, we breathe
******

Group: Member
Posts: 1,635
Joined: Jan 2005
Member No: 91,760



It's honestly not that hard to customize it so that it looks like hers.

This is what pamelajoy has written in her tutorial:
QUOTE
The only customizations I made from ignited's tutorial was in the stylesheet and a few customizations in her actual code -- mainly to get rid of the header stuff, change the date format and few other slight changes.
 
secondstereo
post Jul 3 2005, 05:36 PM
Post #5


Newbie
*

Group: Member
Posts: 8
Joined: Jul 2005
Member No: 164,919



Right, I read that.. but I'm new to this, and so I'm looking for help. If I knew how to do that, I wouldn't need her tutorial. I know how to read, I just can't find what I'm looking for to learn how to do it. I'm not a complete idiot. I've looked up all the tutorials I could find before I went parading around the internet looking for help.
 
jordanriane
post Jul 3 2005, 05:42 PM
Post #6


when we speak, we breathe
******

Group: Member
Posts: 1,635
Joined: Jan 2005
Member No: 91,760



I didn't say you were a complete idiot nor did I say you couldn't read--those comments are completely irrelevent and didn't need to be stated.

If you go to ignited's tutorial here, use her template. It will also walk you through on how to add the template to a theme on livejournal.

What you should just mess around with first, is the hexcodes (colors). By doing this, you'll be able to see what colors go where, which will make changing the colors much easier. After you get a hang of that, reply back to this, and i'll try to walk you through what some of the coding means/does.
 
secondstereo
post Jul 3 2005, 05:54 PM
Post #7


Newbie
*

Group: Member
Posts: 8
Joined: Jul 2005
Member No: 164,919



I'm sorry, but I've just been completely frustrated with this today.. so I'm a little irritated and jumpy. Excuse that.

But anyway, I've already added the template, and fooled around with it for awhile on my own, just trying to figure out how it works. I understand the colors and everything, but what I'm trying to do is what pamelajoy said she does in her tutorial: get rid of the header stuff. And from there, I've found tutorials that will explain the rest of what I would like to do, but the problem is all of those tutorials refer to pamelajoy's codes, and so it's hard to figure out what to do with them if they aren't exactly the same, which is why I was looking for her tutorial. I know of a couple other people who are looking for the same thing, so I'm not completely alone in this problem.

I appreciate your help and your quick replies and everything. Sorry for coming off irritated, but I'm sure you can understand the frustration of trying to figure out this stuff at first....

I just saw that you sent me another private message, I'm going to check that out and then maybe I'll have something else to say.
 
jordanriane
post Jul 3 2005, 06:04 PM
Post #8


when we speak, we breathe
******

Group: Member
Posts: 1,635
Joined: Jan 2005
Member No: 91,760



As far as removing the header goes, you have to add this snippet of coding:

CODE
function Page::lay_print_header ()  {
    var string title = $this->title();
    """
   <div id="header">
       <div id="nav">
    """;

    foreach var string v ($.views_order) {
 println "<a href=\""+$.view_url{$v}+"\">"+lang_viewname($v)+"</a>";
    }

    var string website;
    if($.journal.website_url != "") {
 $website = """<a href="$.journal.website_url">$.journal.website_name</a>""";
    }

    """
     $website
       </div>
   </div>
    """;
}


I used this code, and it works fine. Essentially it can be placed anywhere it the coding, but generally I just try to keep all similar codes together, ie: it removes the header, so I keep it near where the other print_header codes are found.
 
secondstereo
post Jul 3 2005, 06:21 PM
Post #9


Newbie
*

Group: Member
Posts: 8
Joined: Jul 2005
Member No: 164,919



i've seen that code in a tutorial, and it didn't work for me. it still didn't work for me. or maybe i'm not understand what the code is supposed to do:

http://livejournal.com/users/_secondstereo

I copied that code, put it where you said to put it (along with the other tutorial I read), there were no errors, and that's what it looks like. I still see where it says _secondstereo and has my icon and everything. I wonder if it's not the original code I'm using from ignited that's not working right.. or maybe it's my browser?

lol, I'm so ready to give up.
 
jordanriane
post Jul 3 2005, 06:33 PM
Post #10


when we speak, we breathe
******

Group: Member
Posts: 1,635
Joined: Jan 2005
Member No: 91,760



Nah, don't give up. It's been awhile since i originally started with opal, so I kind of forgot where/how/what I changed to remove my header and other various aspects.

What I'll do is just create a blank template for you to use, and just give explanations for it all within the template.

Try using this snippet:



This will need to go RIGHT AFTER where your last column printbox is.
it'll look similar to this:
CODE
""";
print_box("Control Panel", $text);
}
 
secondstereo
post Jul 3 2005, 06:35 PM
Post #11


Newbie
*

Group: Member
Posts: 8
Joined: Jul 2005
Member No: 164,919



Thanks. I appreciate it. In the mean time, I'll continue messing around with it, to see if I can teach myself something. Thanks again.
 
jordanriane
post Jul 3 2005, 06:36 PM
Post #12


when we speak, we breathe
******

Group: Member
Posts: 1,635
Joined: Jan 2005
Member No: 91,760



No problem. But I'll still create that template for you to use as well.
 
secondstereo
post Jul 3 2005, 06:47 PM
Post #13


Newbie
*

Group: Member
Posts: 8
Joined: Jul 2005
Member No: 164,919



thanks, i will try that a little bit later. someone just sent me a copy of the other tutorial, so i finally got my hands on that. i have to get going now though, but if you still want to create the basic explanation for me, you can.. but i can probably figure out from the other tutorial what i wanted to do.. and if not, i'll be back.. lol. but really, i appreciate your help very much so! and maybe once i finish what i was doing, i'll post an update with the final result.

thank you again!
 
jordanriane
post Jul 3 2005, 06:49 PM
Post #14


when we speak, we breathe
******

Group: Member
Posts: 1,635
Joined: Jan 2005
Member No: 91,760



No problem whatsoever.
 
secondstereo
post Jul 4 2005, 02:41 PM
Post #15


Newbie
*

Group: Member
Posts: 8
Joined: Jul 2005
Member No: 164,919



Okay, I think I've finally gotten down to the way I want it, for now anyway. I need to add some stuff on the sidebar and eventually I'll make a header and whatever, but it's basically done. I wanted to credit you as helping me with it, but I wanted to ask you first how you would like to be credited (i.e. do you want me to link to your livejournal?)

here's the link: http://livejournal.com/users/_secondstereo

I also wanted to ask you, I saw that you maintain a community called turntable, I think it was. Mind if i join?

Thanks again.
 
jordanriane
post Jul 4 2005, 05:38 PM
Post #16


when we speak, we breathe
******

Group: Member
Posts: 1,635
Joined: Jan 2005
Member No: 91,760



Yeah, feel free to join.

You don't really have to credit me, I didn't really do too much.
 

Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: