Help me I've fallen and I can't get up

Jul 17, 2005 17:25

Erm... that's not it.

So my superman III download finally finished. EXCEPT one problem. I can't figure out how to play it! Grrrr
Read more... )

superman

Leave a comment

secretlyevileen July 28 2005, 03:52:07 UTC
aaaah. No no you can. :D I have it on S2. And since you have a paid account...

You go to Advanced Customization
then go to Layers. Look under Flexible Squares. You should probably see a link with numbers and in the next column you should probable see Theme and click Edit.

I put together the codes you need. And you just copy & paste it in and replace certain things with what you want.

Where you see margin-top: 514px !important; is where you put the height of your header.

layerinfo "type" = "theme";
layerinfo "name" = "Graduation";

function Page::print_custom_head()
{
"""



""";

After that one is where you put this (the same sidebar code, but I kept the code with the IMG SRC tags that I used for my icons incase you wanna put pics):

}
function print_sidebar()
{
var string extra1_title ="";
var string extra1_content ="";
var string extra2_title ="";
var string extra2_content ="";
var string extra3_title ="";
var string extra3_content ="";
var string extra4_title ="";
var string extra4_content ="";

$extra1_title = """
  • Title
  • """;
    $extra1_content = """






  • """;
    $extra2_title = """
  • Title
  • """;
    $extra2_content = """
  • Put whatever you want here... like the stuff about you.
  • """;

    $extra3_title = """
  • Title
  • """;
    $extra3_content = """
  • put more stuff here
  • """;

    $extra4_title = """
  • Bit of Randomness
  • """;
    $extra4_content = """
  • Put more stuff here or you can just delete the whole Extra4_title thing
  • """;

    print_userpic();
    print_sidebar_blurb();
    print_sidebar_box($extra1_title, $extra1_content);
    print_sidebar_box($extra2_title, $extra2_content);
    print_sidebar_box($extra3_title, $extra3_content);
    print_sidebar_box($extra4_title, $extra4_content);
    print_sidebar_linklist();
    print_sidebar_calendar();

    }

    where you see print_sidebar_box() and all that stuff it lists... this where you can change the order of what's in your sidebar.

    hehe that's okay.. Not stupid, just inexperience. :) hehe I didn't know squat when I first started. I first started learning how the coding works with component. And there's a limit on how much I can do. :) I usually can figure out where I need to merge different codes together... very hard to figure out. lol

    Let me know if it works out alright for you. You shouldn't get any compiling errors.

    Reply

    secretlyevileen July 28 2005, 03:53:24 UTC
    I included my scrollbar css code in there... which if you dont want you can just take it out and if you keep it just change the colors to match your layout.

    Reply

    rjchasez July 28 2005, 04:11:38 UTC
    I'm going to give that a shot. I hope I don't screw it up lol

    Becca

    Reply

    secretlyevileen July 28 2005, 04:26:38 UTC
    lol copying & pasting is my friend.

    Reply

    rjchasez July 28 2005, 04:41:06 UTC
    ugh I'm getting the exact thing you said I probably wouldn't get: a compile error lol

    Becca

    Reply

    secretlyevileen July 28 2005, 05:06:43 UTC
    aah lol

    Hmm... well look at This. That's every bit of code I have in mine.

    On your main layers page. Click on the Layer #
    then click on View as HTML and copy the link and give it to me. Then I can take a look at it and see what's wrong. I'm sure it's probably something really simple.

    Reply

    rjchasez July 28 2005, 05:22:09 UTC
    It keeps saying that there is no such thing as print_userpic. What would that mean?

    Becca

    Reply

    secretlyevileen July 28 2005, 06:05:34 UTC
    ah... okay I looked at my code and see what you need. :) I wasn't sure if I needed to give it to you before...
    So hopefully this should be all you need. If not lol then I'll just give you my entire code and I'll point out the stuff you can take out or change.

    function print_entry(Page p, Entry e, Color bgcolor, Color fgcolor) {
    $e->print_linkbar();

    # Userpic
    var string userpic = "";
    if ($*show_entry_userpic) {
    if ($p.view == "friends" or $p.view == "entry") {
    if (defined $e.userpic) {
    $userpic = $userpic + """$e.poster.name if ($e.poster.username != $e.journal.username) {
    $userpic = $userpic + " in $e.journal.name";
    }
    $userpic = $userpic + "\">";
    }
    } elseif ($p.journal_type == "C" and $p.view == "recent") {
    if (defined $e.userpic) {
    $userpic = $userpic + """$e.poster.name""";
    }
    } else {
    if (defined $e.userpic) {
    $userpic = $userpic + """
    $e.poster.name
    """;
    }
    }
    }
    """

    """;
    if (($p.view == "recent" and $p.journal_type != "C" ) or $p.view == "day") {
    print $userpic;
    } else {
    if ($p.view == "recent" and $p.journal_type == "C" ) {
    """

    """;
    } else {
    """

    """;
    }
    print $userpic;

    # Poster
    if ($p.view == "friends" or $p.view == "entry") {
    var UserLite linkto;
    $linkto = $e.poster;
    #print "$e.poster.username";
    """
    base_url() + "\">";
    """$linkto.username
    """;
    } elseif ($p.journal_type == "C" and $p.view == "recent") {
    var UserLite linkto;
    $linkto = $e.poster;
    #print "$e.poster.username";
    """
    base_url() + "\">";
    "$linkto.username
    ";
    }
    if (($p.view == "friends" or $p.view == "entry") and $e.poster.username != $e.journal.username) {
    var UserLite linkto;
    $linkto = $e.journal;
    """
    [base_url() + "\">";
    """$linkto.username
    ]""";
    }
    if ($p.view == "recent" and $p.journal_type == "C") {
    """

    """;
    }
    if ($p.view != "recent" and $p.view != "day") {
    """

    """;

    }
    }

    Right after:

    print_sidebar_linklist();
    print_sidebar_calendar();

    }

    Reply

    rjchasez July 29 2005, 02:27:16 UTC
    Thanks. I'll try that, and I hope it works lol

    Becca

    Reply


    Leave a comment