Your Portal Version: 1.0.2
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Advanced Knowledge
Boardlink: http://www.rossedwards.co.uk/phpBB3
What have you done before the problem was there?
nothing - this comes up on most of the preset styles with this portal - and on various different browsers.
What have you already tryed to solve the problem?
nothing yet
Description and Message
All the styles seem to have a problem with this box? other than subsilver2 which is ok when the browser is resized.
is this a known problem ?
'Topics post' box is loosing structure when window resized ?
Forum rules
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
-
- Former Team Member
- Posts: 2266
- Joined: 19. January 2008 01:17
- phpBB.de User: Christian_N
- phpBB.com User: Christian_N
- Location: Frankfurt
- Contact:
Re: 'Topics post' box is loosing structure when window resized ?
Hello,
1st you have not installed the version 1.0.2 (at least not 100%)
2nd this is a problem in too small screen resolution, in my 1280x768px of it is true.
Greeting Chris
1st you have not installed the version 1.0.2 (at least not 100%)
2nd this is a problem in too small screen resolution, in my 1280x768px of it is true.
Greeting Chris
Re: 'Topics post' box is loosing structure when window resized ?
Hi
this is an older build, but i have just installed the portal on another site and it does the same thing.
I don't always display my browser full screen so most of the windows are less than 800 in width.
so is it just a decision that these styles are not built for any small screens or low resolutions ?
this is an older build, but i have just installed the portal on another site and it does the same thing.
I don't always display my browser full screen so most of the windows are less than 800 in width.
so is it just a decision that these styles are not built for any small screens or low resolutions ?
-
- Former Team Member
- Posts: 2266
- Joined: 19. January 2008 01:17
- phpBB.de User: Christian_N
- phpBB.com User: Christian_N
- Location: Frankfurt
- Contact:
Re: 'Topics post' box is loosing structure when window resized ?
Hi,
my English is not so good, but you can edit the forumlist_body.html so that even at smaller resolution looks good.
Open: forumlist_body.html
Find:
Replace with:
Find:
After add:
Find:
Replace with:
Then please note this: viewtopic.php?f=24&t=553
my English is not so good, but you can edit the forumlist_body.html so that even at smaller resolution looks good.
Open: forumlist_body.html
Find:
Code: Select all
<dd class="topics">{L_TOPICS}</dd>
<dd class="posts">{L_POSTS}</dd>
Code: Select all
<!-- IF not $S_IN_PORTAL -->
<dd class="topics">{L_TOPICS}</dd>
<dd class="posts">{L_POSTS}</dd>
<!-- ENDIF -->
Code: Select all
{forumrow.FORUM_DESC}
Code: Select all
<!-- IF $S_IN_PORTAL -->
<br />{forumrow.TOPICS} {L_TOPICS} • {forumrow.POSTS} {L_POSTS}
<!-- ENDIF -->
Code: Select all
<dd class="topics">{forumrow.TOPICS} <dfn>{L_TOPICS}</dfn></dd>
<dd class="posts">{forumrow.POSTS} <dfn>{L_POSTS}</dfn></dd>
Code: Select all
<!-- IF not $S_IN_PORTAL -->
<dd class="topics">{forumrow.TOPICS} <dfn>{L_TOPICS}</dfn></dd>
<dd class="posts">{forumrow.POSTS} <dfn>{L_POSTS}</dfn></dd>
<!-- ENDIF -->