A park page? Explain please smile

If you have some time, I'd appreciate it if you could give me some tips on this theme I'm working on: http://garciat.us.to/blue2/

Thanks!

If you look really close, you can see a 1px difference here:
http://i247.photobucket.com/albums/gg135/garcia-t/oops_1px.jpg

It's something on the CSS:

.brd br, .brd hr, .brd .hr, .brd .hidden {
display: none;
}

on Lines 22-24 on 'style/Oxygen/Oxygen.css'.

It's just like a simple array. Replace what you want to replace. smile

What if he's quoting parts of the posts? He needs to click the link multiple times to do so. And, yes, users should be noticed that the quote has been added to their message. Moving back to the message box, like you said, is a good idea, but it could get annoying for some people.

It looks really good. I guess he needs that white space otherwise the rusty background will look weird.

Do you have a middle mouse button? Try clicking the quick quote link with it, it'll open the old quote page.

I see the reply links are gone, cool smile

510

(17 replies, posted in PunBB 1.3 extensions)

That's nice.

Meet your girlfriend's parents?

No, really, what's the point of the reply link.

513

(3 replies, posted in PunBB 1.3 troubleshooting)

This is the function used by PunBB to generate it.

function random_key($len, $readable = false, $hash = false)
{
    $key = '';

    if ($hash)
        $key = substr(sha1(uniqid(rand(), true)), 0, $len);
    else if ($readable)
    {
        $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';

        for ($i = 0; $i < $len; ++$i)
            $key .= substr($chars, (mt_rand() % strlen($chars)), 1);
    }
    else
        for ($i = 0; $i < $len; ++$i)
            $key .= chr(mt_rand(33, 126));

    return $key;
}

Just do something like

echo random_key(12);

and use that.

514

(14 replies, posted in PunBB 1.3 extensions)

It seems you didn't upload the lang folder from the extension.

515

(3 replies, posted in PunBB 1.3 troubleshooting)

Yes, you can add a user directly to the DB.

516

(1 replies, posted in PunBB 1.3 troubleshooting)

The style and language seem to work. If it's not working for you, change your default style and language from your profile.

517

(10 replies, posted in PunBB 1.3 additions)

Exactly what I said? I actually meant that you should edit the 'Captcha info' string (and 'Invalid text', accordingly) in the $lang_pun_antispam array with the string I provided, and then use the sprintf() function to "pass" on the variable to the string when it is needed.

For example, if you open up 'lang/English/index.php', you'll notice that the first value says:

Moderated by %s

Why "%s"? Because on line 193 of 'index.php' the sprintf() is used to replace it with the mod's username. I haven't really tried sprintf() with a $_SESSION variable, but it should definitely work.

Perhaps you could make the

Do you need to register or obtain a new password before you login?

message look like the

Important! An e-mail will be sent to the specified address with instructions on how to change your password.

message instead of hiding it.

The messages on top of each form look out of place. Apart from that, looks good.

520

(10 replies, posted in PunBB 1.3 additions)

Can't you do something like

$lang_pun_antispam['Captcha info'] = 'Please enter <i>only</i> the <b><font color="%1$s">%1$s</font></b> character(s) in the image.';

then, when the string is needed

sprintf($lang_pun_antispam['Captcha info'], $_SESSION['use_color']);

I'm sorry, it's not in my plans.

522

(9 replies, posted in PunBB 1.3 additions)

Looks better that way.

523

(10 replies, posted in PunBB 1.3 additions)

http://garciat.us.to/pics/image.php.gif

You could make it more random by adding other colors (only 2 will be used on a single image), randomizing the color needed for the input (it's always red), adding some letters, and maybe using a longer string.

524

(9 replies, posted in PunBB 1.3 additions)

Looks good... the footer could be improved, though... maybe placing the copyright and quickjump outside of the blue box?

You don't have to remove it. Replace that line number with the text I gave.