jeffus wrote:

Any browser issues?  Was able to do limited IE checks (I'm a mac-geek).

Try http://www.browsershots.org wink
Here with IE7, FF2 and Opera9 no problems.

Looks good.

One issue and one suggestion.
Issue: in IE7 I can see the Forum Title (notFALLIN).
Suggestion: change the form field's background/color, maybe black background and grey color. As it is - black/brown, I don't feel too comfortable reading it.

28

(1 replies, posted in PunBB 1.2 troubleshooting)

Try this:
#brdmenu LI {PADDING: 0px !important; MARGIN: 0px !important}

Background:
#brdmenu DIV.box {BACKGROUND-COLOR: #COLOR}

29

(19 replies, posted in PunBB 1.2 show off)

The skin looks good, but I miss the title and the topic/forum icons.
The absence of the title could represent an usability problem.

It's simple and nice, right to the point.

In IE7 you can see the Bunpai (name of the forum) title *and* the logo.

Try this: http://punbb.org/forums/viewtopic.php?id=15599

The hover styling in the navigation menu renders almost invisible (same color of background).

32

(3 replies, posted in PunBB 1.2 show off)

IE7 shows a displaced footer, some pixels to the right.

Nice integration.

33

(11 replies, posted in PunBB 1.2 troubleshooting)

I'll put it simplier:
1 - download one of the above text editors
2 - install a copy of your forum directories in your local hard drive
3 - open the text editor
4 - UltraEdit, menu search, find in files, specify your root punbb installation directory, select *.* files
5 - search for "font"
6 - the text editor will open every file in punbb and search for "font"
7 - it will display the result, hence for, show you where is the problem
8 - you open the file, remove the tag, upload the changed file, and you're done

34

(11 replies, posted in PunBB 1.2 troubleshooting)

For similar problems use a text editor with a search in files function such as UltraEdit.

35

(11 replies, posted in PunBB 1.2 show off)

In index.php you have some problems with text centering in the newsletter box, both in Firefox and IE7.
I never tried the Frontpage mod but there are 2 identical page navigation elements in viewforum.php. Is it on purpose?

Besides that, looks ok. Good luck!

36

(6 replies, posted in PunBB 1.2 show off)

Looks good.

As to centering in IE try replacing this in wow.css

html, body {
margin:0pt auto;
padding:0pt;
width:800px;
}

with this

HTML {TEXT-ALIGN: center}
BODY {TEXT-ALIGN: left; MARGIN: auto; PADDING: 0; WIDTH: 800px}

The gradient background is missing some pixels for a smooth transition to the white background.
The Index link in viewtopic.php/viewforum.php (breadcrumb) should redirect you to forums.php and not index.php, but that's only an opinion (like it is in the Blogs section).

Don't know if it's intended but I think it would look better if the header and footer background were of the same width as the body.
Don't know who's your audience but with so many things onscreen I would change the width to 900 or 950px.
The links in the navbar could do better if vertically centered.
Drop the shadow/reflection on Bunpai logo and choose a different typeface.

I hope you don't think I was too harsh.

38

(2 replies, posted in General discussion)

Compare it: http://forummatrix.org
Try it: http://demo.punres.org/?id=203 or http://www.mypunbb.com/ and http://www.punbb-hosting.com/
Visit the largest boards: http://stats.punres.org/ and here http://punbb.org/forums/viewtopic.php?id=2755

It does everything that a forum should do (it includes everything you said).

Try it like this:

#content {
/*float: left;*/
width: 669px;
margin: 0px 0 0 0px;
}

http://www.punres.org/browse.php?keywor … p;forums=1

To hide it (not remove it), add this to your style.css:

#brdtitle H1 SPAN {DISPLAY: none}

But this depends on how did you put the logo there.

You've broke it here: http://www.warbrain.org/br/search.php tongue

Parse error: syntax error, unexpected T_ELSE in /home/nabyar/public_html/br/search.php on line 608

I would choose a darker background for the boxes, otherwise looks ok. I like the graphics.

It's a border with a 18em width.

In Oxygen you can see it at line 42:

DIV.postright, DIV.postfootright {BORDER-LEFT-COLOR: #f1f1f1}

In some of my styles I've opted to change it from a border to a margin.
You can do it like this:

DIV.postright, DIV.postfootright {BORDER-LEFT-WIDTH: 0em !important; MARGIN-LEFT: 18em}

See if this works:

Change in viewtopic.php (line 286):

    else
        $post_actions[] = '<li class="postreport"><a href="misc.php?report='.$cur_post['id'].'">'.$lang_topic['Report'].'</a>'.$lang_topic['Link separator'].'</li><li class="postdelete"><a href="delete.php?id='.$cur_post['id'].'">'.$lang_topic['Delete'].'</a>'.$lang_topic['Link separator'].'</li><li class="postedit"><a href="edit.php?id='.$cur_post['id'].'">'.$lang_topic['Edit'].'</a>'.$lang_topic['Link separator'].'</li><li class="postquote"><a href="post.php?tid='.$id.'&qid='.$cur_post['id'].'">'.$lang_topic['Quote'].'</a>';

To:

    else
    {
        if (!$is_admmod && isset($reported[$cur_post['id']]) && count($reported[$cur_post['id']]) >= 3)
        {
            $post_actions[] = '<li class="postreport"><a href="misc.php?report='.$cur_post['id'].'">'.$lang_topic['Report'].'</a>'.$lang_topic['Link separator'].'</li><li class="postdelete"><a href="delete.php?id='.$cur_post['id'].'">'.$lang_topic['Delete'].'</a>'.$lang_topic['Link separator'].'</li><li class="postedit"><a href="edit.php?id='.$cur_post['id'].'">'.$lang_topic['Edit'].'</a></li>';
        }
        else
        {
            $post_actions[] = '<li class="postreport"><a href="misc.php?report='.$cur_post['id'].'">'.$lang_topic['Report'].'</a>'.$lang_topic['Link separator'].'</li><li class="postdelete"><a href="delete.php?id='.$cur_post['id'].'">'.$lang_topic['Delete'].'</a>'.$lang_topic['Link separator'].'</li><li class="postedit"><a href="edit.php?id='.$cur_post['id'].'">'.$lang_topic['Edit'].'</a>'.$lang_topic['Link separator'].'</li><li class="postquote"><a href="post.php?tid='.$id.'&qid='.$cur_post['id'].'">'.$lang_topic['Quote'].'</a>';
        }
    }

Didn't test it. smile

Simple and fast, how often do you see it in life?

46

(16 replies, posted in PunBB 1.2 discussion)

Opera 9.10 Windows XP ok.

47

(9 replies, posted in PunBB 1.2 show off)

Your fonts are too small in IE6.

48

(30 replies, posted in PunBB 1.2 discussion)

Could someone explain me how to apply Worf's patch in WAMP platform? I'm out of my league here... big_smile

You should put a link to the "hi-fi" version in your "lo-fi" pages. At least I would like to see it there. wink
Is your mod (printable topic) downloadable?

I'm using EP +.
Except for the fact that you can't edit the poll, everything's fine.