And I'm going to change my user title to "bizarre and baroque"

427

(2 replies, posted in PunBB 1.2 troubleshooting)

Hopefully sombody will answer but in the meantime could you try to use sensible and relevant topic titles. Things like "which" and "ok" decrease the chances of your questions being answered. If somebody doesn't know what you are asking from the topic title they may not bother to read the post.

428

(3 replies, posted in PunBB 1.2 troubleshooting)

http://punbb.org/docs/faq.html#faq2_6

Its background-attachement: fixed which is the problem. It causes the image to be fixed with regard to the viewport not the div. If you scroll your page slightly so that the top of the header is touching the top of the viewport you will see it aligns perfectly.

The short answer is get rid of it.

430

(27 replies, posted in PunBB 1.2 troubleshooting)

deadram wrote:

More like 15% IE7, 45% IE6, 30% FF and steadaly droping (75% IE6, IE% in Jan 2006, 57% IE7, IE6 in Jan 2006.

If you encourage that number to drop by dropping support for IE7 you encourage MS to add support for w3 standards (I don't care if they add their own junk above and beyond... but letting MS split the web again... like NS2 and MS3 used to do... is just childish... and I like being the more stubborn child tongue).

Most people visitng that site are power users and not at all a representitive sample of typical internet users. If you look at local authority sites where the usage pattern is likely to be more typical you find IE6 = 72%, IE7 = 18%; Gecko = 7%, Others = 3%.

A large number, possibly the majority, of people using the web have never heard of Firefox and simply expect web sites to work in the browser that came with their pc. If the site doesn't work they just assume the designer is an idiot. If you are a geek designing a hobby site purely for other geeks then not supporting widely used browsers is fine, otherwise its not even worth considering as an option.

431

(49 replies, posted in PunBB 1.2 discussion)

grudon66: do remember this is work and progress and no support is available so if you have problems you are on your own.

432

(27 replies, posted in PunBB 1.2 troubleshooting)

elbekko wrote:

Because over 60% of the world's internet users use IE6/7?

Make that more like 85%.

Its already there.
http://dev.punbb.org/

434

(2 replies, posted in PunBB 1.2 discussion)

Moved.

435

(17 replies, posted in General discussion)

Is it running on a subdomain. Could it be an incorrect cookie path?

436

(17 replies, posted in General discussion)

Are you running any kind of software which could cause problems, Norton Internet Security comes to mind. Are you sure cookies are enabled and not being blocked?

If you mean you want to the name of the image file to vary then the answer is you can't, css has no support for variables in style declarations whatsoever. The only way to do it is to generate the css dynamically.

438

(16 replies, posted in Programming)

CReatiVe4w3 wrote:

Tables don't "belong in the last millennium", they are just not used correctly -- they are meant for tabular data; that will hold true as long as a div is used for division and p is used for a paragraph.

You misquoted, he said "Layout tables belong in the last millenium" which is actually exactly what you said i.e. layout tables bad, data tables good.

In fact, I would dispute there is any such thing as tabular data, there is merely data. The question is always whether a tabular format is the most effective way of presenting that data.

Wrong forum. Moved.

There isn't one.

Why not just paste the url's into a download manager like Flashget and set it to download the whole lot.

442

(2 replies, posted in PunBB 1.2 show off)

This site provides a good lesson on how to set up a new forum. One category and a limited number of forums and the place looks to be thriving. Add more categories and more forums and it would look a lot less busy and less inviting. Nicely done.

443

(4 replies, posted in PunBB 1.2 discussion)

A style is created using a stylesheet. A template is markup. PunBB doesn't really use templates except to a limited extent so all styles/themes are created using css only.

Version 1.3 won't be compatible with the 1.2 and vice versa though updating current styles will be easy enough.

There really isn't much point in a style guide since it would only be a guide to one style. I could create three different styles for PunBB and do each of them in a completely different way. If anything what we need is a markup guide which those who have a reasonable knowledge of css can use. We also need some radically different default styles so people who want to tinker with an existing style rather than creating a new one have a number of different styles to start from.

As far as I know IE7 handles font resizing the same as IE6, that is, it cannot resize font sizes specified in pixels.

It does have a page zoom feature which tries (and fails) to mimic Opera by simply magnifying everything on the screen including text but thats not the same thing. What confuses the issue is using ctrl + scroll activates page zoom in IE7 whereas it used to activate text resizing. To resize text in IE7 you now have to use the menu.

445

(49 replies, posted in PunBB 1.2 discussion)

You are wasting your time posting about this. I do not maintain the svn stylesheets in working order while the markup is being worked on so most of the time it will look broken in one browser or another.

446

(8 replies, posted in PunBB 1.2 troubleshooting)

You probably just opened the file in code view rather than trying to open it in an external editor which is the sensible way to do it. And since when have you been using Nightmare Stitch.

447

(8 replies, posted in PunBB 1.2 troubleshooting)

Because Dreamweaver will be setup to open external editors according to file extension and the .tpl extension won't be in the list so it won't know which program is associated with it. It can be configured to open the .tpl files in Notepad or any other text editor though its a bit of a waste of effort.

448

(8 replies, posted in PunBB 1.2 troubleshooting)

The templates are just text files. Use Notepad.

Yes. Just add #pun-index to the start of the relevant css ruleset to apply different icons to the index page.

450

(9 replies, posted in Programming)

Off the top of my head and without trying it:-

.pun #brdtitle, .pun #brdtitle h1, .pun #brdtitle h1 span, .pun #brdtitle p {
  font-size: 0;
  line-height: 0;
  height: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  }

.pun #brdtitle h1 span {
  display: block;
  padding-top: 78px;
  background-img: url(whatever);
  background-repeat: no-repeat;
  background-position: center right;
  }

.pun #brdtitle h1 {
  background-img: url(whatever);
  background-position: center left;
  background-repeat: no-repeat;
  }