Zombie Man

Ebil-o FTL June-21 & Feb-22-2010
  • Posts

    10412
  • Joined

  1. Good stuff Tony.

    Have you seen the stuff done with Styish and Sharrow's GreaseMonkey scripts? See the link in my sig.
  2. Quote:
    Originally Posted by Diellan_ View Post
    It might be possible to align the sigs where we want with some creative css. For example, I can make it so that sigs appear at the bottom of the post space just by putting the following line:

    #posts .alt1 > div[id] { min-height: 103px; }

    The only problem is that the "editted on" line and the Quote buttons and what not take up valuable real estate below and add a lot of extra padding. I could come up with some kind of solution if I could just figure out what we'd like to do with it.

    Anyways, this is awesome, and I'd love to help out with this. This is what I do for a living and have done for the last, oh, eight years, after all (well, among other web development stuff).

    Side note: The HTML for the skin of this forum is horrible. Mixing divs and tables? In-line styles all over? Ew.
    Good, glad to have your help. Although Sharrow hacked a solution to the move-the-sig-to-the-bottom problem with a GreaseMonkey script in this thread.
  3. Zombie Man

    Pwnz

    Shoots green /petition bolts from his ring.

    Pew! Pew!
  4. Unfortunately, all the old links are broken since the URLs reference the thread number, which are now different on the new boards.

    Your best bet is asking around in the Defender forum or doing an Advanced Search, Chose Defender Forum, keyword Dark, in thread titles.
  5. Quote:
    Originally Posted by Sharrow View Post
    Ideally, you'd be able to fix the signature to the bottom of the table cell, but the signature is a direct descendant of a TD and AFAIK Firefox doesn't allow positioning to be set on table elements.

    I've added a (slightly messy) function to push the signature down into the empty space alongside the Quote/Reply buttons. Comments on aesthetics welcome.

    Also, it should work in Safari (tested) and Opera (untested) again.
    Squee!

    It works beautifully. And even for longer posts, it creates a little gap between the body and sig which is much easier on the eyes. Only those with really long sigs <coughfleetingwhispercough> have their sig mushed against the body.

    Excellent work and thanks!
  6. Quote:
    Originally Posted by Fleeting_Whisper View Post
    You misunderstand me. That is how Firefox displays a broken image. Try highlighting the "View Post" text - note that you can only either highlight the whole link, or none of it. That's because it's actually an image.

    Just because Firefox doesn't show a border around the broken image and a red box in the corner, doesn't mean it's not displaying a broken image.
    Ah, that explains why some of the Avatars I'm seeing in FF look like links, they're actually broken links and FF is making a text-like substitution.

    FF is smart.
  7. While the log chat function only starts to record chat from the time you issued the command, the /copychat function copies everything that's in the buffer for that channel, which includes a bit of history.
  8. Zombie Man

    Veteren Rewards?

    These temp powers are worth using for squishier type toons at high levels if you have enough global Accuracy or ToHitBuff -- either powers like Tactics or IO Set Bonuses of global ACC.
  9. See the link in my sig for more skinning options.
  10. Zombie Man

    Pwnz

    Quote:
    Originally Posted by Karl_Rove_Man View Post
    Didn't keep any of that....I'm sure someone here has something though.

    You can always use the wayback machine:
    http://www.archive.org/web/web.php

    I'm rather fond of this one:
    http://web.archive.org/web/200709041...ubbthreads.php

    Oh yeah, in spirit of PWNZ past, **** you Zombie_Man.
    I love you, Karl Rove Man!!! <pours KRM some tea>
  11. <Shrug> FF doesn't show an image, broken or otherwise, with or without Stylish for me. And this is with a previous version of FF and the newest one.

    So, AFAIK, for FF users, it's a non-issue.

    Edit: the pic that's supposed to be there (http://boards.cityofheroes.com/style...s/viewpost.png) is a 404.
  12. Zombie Man

    Pwnz

    Does anyone have a screenshot of one of the PvForum games where the first letter of each thread spelled out something?

    I need a screenshot of a thread-list page from the old forums to help with my Hero Skin project so as to replicate the old look as much as possible for those who want the classic look.

    Thanks!
  13. Do you have to tell Jay how hot he looks to get him to create that for you in-game?
  14. Quote:
    Originally Posted by Fleeting_Whisper View Post
    That's not entirely true. The thread title, message, and sig are all in the same table cell, yes. But they are not one block of text.

    The thread title is in a DIV.
    The the thread title is followed by a HR
    The HR is followed by the message, in a DIV
    The message is followed by the signature, in a DIV
    The signature contains a row of underscores (_) followed by the actual signature, a DIV

    So, what you need to do is stretch the height of the DIV enclosing the signature, and then align the signature div (and optionally the "__________________" textNode) to the bottom of that. I don't have the motivation to fiddle around with the vertical align stuff, but you can even reach those two DIVs with CSS, so you may not even need to use a Greasemonkey script to do it.
    div#posts > div > table.tborder td.alt1 > div + div
    div#posts > div > table.tborder td.alt1 > div + div > div
    Removing or replacing the __________________ would require Greasemonkey, though.
    Hmmm... This works...

    Quote:
    td.alt1 {vertical-align: bottom !important;}
    In that it drops the thread title, message body, and sig to the bottom of its box.

    However, these don't do anything together or separately...

    Quote:
    #posts > div > table.tborder td.alt1 > div + div {vertical-align: bottom !important;}
    #posts > div > table.tborder td.alt1 > div + div > div {vertical-align: bottom !important;}
    Even though something like this...

    Quote:
    #posts > div > table.tborder tr:first-child + tr + tr > td.alt1 {background: #693430 !important;}
    Does work perfectly.

    So... any clues?

    (Actually, this isn't something I'm very concerned about. It's just a slight unsightliness of very short posts that's easily ignored.)
  15. Quote:
    Originally Posted by Devian View Post
    FYI: The villain link in the OP points to a jpg.
    Fixed, thanks!
  16. Well, the Zombie Villain Skin is updated. It's looking much sharper. Thanks to Fleeting Whisper and Devian for tracking down the magical sigils that represent various parts of the forum bits and pieces.

    I'm still working on it. I'm just about done deconstructing the post page and will get to the Thread page and then make those same changes to the Hero Skin.

    I'm heavily annotating it so that you all can tweak it as you wish. The annotations are starting to become a mini-guide in and of themselves.
  17. Quote:
    Originally Posted by LostNinja View Post
    Oh and any chance of adding the bottom align that BAB mentioned in the Alien Skin thread?
    Highly unlikely.

    The thread title, message, and sig are all appended to each other to make one block of text.

    You can move that text vertically to the bottom, but then you'll have unsightly blank space on top. There's no way to stretch a post to use up the entire height of the Avatar and miscellaneous stuff in the left bar without some coding wizardry.

    Now, if we could move the thread title into the top bar and the sig into the bottom bar, then we could vertically center the message for something pleasing to the eye. But, that's a lot of coding for little gain.
  18. Or do Positron's TF four nights in a row.
  19. Quote:
    Originally Posted by Fleeting_Whisper View Post
    Really? I haven't looked into the page's stylesheet as much as you have, but it looks like all it would need is to modify the margin-top or margin-bottom of the tables...
    Well, up until a few days ago, I didn't know anything about CSS. My html knowledge is the equivalent of being able to do Hello World in BASIC. So, it's likely I'm missing something.

    OTOH, from what I'm able to figure out, there's just a lot of html coding that is not set up to be affected by CSS, for example, the two main panels of each post is given an class designation making it easy to change the definition of the class with CSS coding. However, the little panel under the avatar with the notify moderator button doesn't have a class defined, so, no CSS changes there.
  20. Quote:
    Originally Posted by DumpleBerry View Post
    Awesome, thank you--the avatars still didn't disappear, they just wrapped the post text around them. So...do I cut and paste your updated style code, or insert this into my existing style code? And if the second, where?
    Since everyone needs that fix, I updated all the skins under my control to include that control. So, you can do a complete re-cut-and-paste.

    If you ever do want to add or subtract a script element, just be careful of the open and close curly brackets. There's an open one at the beginning and a close one at the end of the page. Then, each element has its own open and close. The safest thing to do is to add a few carriage returns before the final close curly bracket and drop a new element right before it.
  21. Scooped

    And trust me, besides Castle and BAB, you really don't want to waste your time searching for posts from the other devs... they just post that infrequently.
  22. Quote:
    Originally Posted by Kyasubaru View Post
    Awesome, I've been using the skin you posted in the feedback thread, but this is even better.

    Have a couple of questions/requests:

    There's a gradient image behind post boxes in the background(goes from red to black on the villain skin). Is there a way to get rid of that so the background is just one solid color?

    And is there a way to get rid of the empty space between posts, and/or make the empty margins on the sides of the posts smaller/nonexistant?
    For a no-gradient skin and a completely black background, install Devian's skin concurrent with mine. And if you really want completely black background, go into Devian's skin (Heroes Forum Lite Version) and change this...

    /* Get rid of the horizontal gradients behind the main table, replace with a flat color and thin border */
    .page_bgl { border: 1px solid #45494D; background: #191919 !important; }
    .page_bgr { background: none !important; padding-top: 15px }

    To this...

    /* Get rid of the horizontal gradients behind the main table, replace with a flat color and thin border */
    .page_bgl { border: 1px solid #000000; background: #000000 !important; }
    .page_bgr { background: none !important; padding-top: 15px }


    There is no way to get rid of the gap between posts with a style sheet. It would take a GreaseMonkey programming script to do so, and that's beyond my abilities.
  23. Quote:
    Originally Posted by FatherXmas View Post
    Well the instability was player induced griefing due to a faulty client (summon vet reward rikti monkey and crash everyone within visual range). Hopefully this will be cleared up shortly.
    ZOMG!! They're going to euthanize all the Rikti Monkey pets!!!