Page 1 of 1
'Topics post' box is loosing structure when window resized ?
Posted: 15. October 2008 16:10
by rossoe
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 ?
Re: 'Topics post' box is loosing structure when window resized ?
Posted: 15. October 2008 16:42
by Christian_N
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
Re: 'Topics post' box is loosing structure when window resized ?
Posted: 15. October 2008 16:55
by rossoe
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 ?
Re: 'Topics post' box is loosing structure when window resized ?
Posted: 15. October 2008 17:27
by Christian_N
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: Code: Select all
<dd class="topics">{L_TOPICS}</dd>
<dd class="posts">{L_POSTS}</dd>
Replace with: Code: Select all
<!-- IF not $S_IN_PORTAL -->
<dd class="topics">{L_TOPICS}</dd>
<dd class="posts">{L_POSTS}</dd>
<!-- ENDIF -->
Find:
After add: Code: Select all
<!-- IF $S_IN_PORTAL -->
<br />{forumrow.TOPICS} {L_TOPICS} • {forumrow.POSTS} {L_POSTS}
<!-- ENDIF -->
Find: Code: Select all
<dd class="topics">{forumrow.TOPICS} <dfn>{L_TOPICS}</dfn></dd>
<dd class="posts">{forumrow.POSTS} <dfn>{L_POSTS}</dfn></dd>
Replace with: 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 -->
Then please note this:
viewtopic.php?f=24&t=553