Author: acydburn
Date: Mon Aug 31 14:16:10 2009
New Revision: 10078
Log:
set to !important because lists with the applied display: list-item will result in forum descriptions shown even if hidden (at least in safari)
Modified:
branches/phpBB-3_0_0/phpBB/styles/prosilver/template/viewforum_body.html
branches/phpBB-3_0_0/phpBB/styles/prosilver/template/viewtopic_body.html
Modified: branches/phpBB-3_0_0/phpBB/styles/prosilver/template/viewforum_body.html
==============================================================================
*** branches/phpBB-3_0_0/phpBB/styles/prosilver/template/viewforum_body.html (original)
--- branches/phpBB-3_0_0/phpBB/styles/prosilver/template/viewforum_body.html Mon Aug 31 14:16:10 2009
***************
*** 5,11 ****
<!-- IF FORUM_DESC or MODERATORS or U_MCP -->
<p>
<!-- NOTE: remove the style="display: none" when you want to have the forum description on the forum body -->
! <!-- IF FORUM_DESC --><span style="display: none">{FORUM_DESC}<br /></span><!-- ENDIF -->
<!-- IF MODERATORS --><strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->:</strong> {MODERATORS}<!-- ENDIF -->
</p>
<!-- ENDIF -->
--- 5,11 ----
<!-- IF FORUM_DESC or MODERATORS or U_MCP -->
<p>
<!-- NOTE: remove the style="display: none" when you want to have the forum description on the forum body -->
! <!-- IF FORUM_DESC --><div style="display: none !important;">{FORUM_DESC}<br /></div><!-- ENDIF -->
<!-- IF MODERATORS --><strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->:</strong> {MODERATORS}<!-- ENDIF -->
</p>
<!-- ENDIF -->
Modified: branches/phpBB-3_0_0/phpBB/styles/prosilver/template/viewtopic_body.html
==============================================================================
*** branches/phpBB-3_0_0/phpBB/styles/prosilver/template/viewtopic_body.html (original)
--- branches/phpBB-3_0_0/phpBB/styles/prosilver/template/viewtopic_body.html Mon Aug 31 14:16:10 2009
***************
*** 2,8 ****
<!-- IF U_MCP --><p>[ <a href="{U_MCP}">{L_MCP}</a> ]</p><!-- ENDIF -->
<h2><a href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a></h2>
<!-- NOTE: remove the style="display: none" when you want to have the forum description on the topic body -->
! <!-- IF FORUM_DESC --><span style="display: none">{FORUM_DESC}<br /></span><!-- ENDIF -->
<!-- IF MODERATORS or U_MCP -->
<p>
--- 2,8 ----
<!-- IF U_MCP --><p>[ <a href="{U_MCP}">{L_MCP}</a> ]</p><!-- ENDIF -->
<h2><a href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a></h2>
<!-- NOTE: remove the style="display: none" when you want to have the forum description on the topic body -->
! <!-- IF FORUM_DESC --><div style="display: none !important;">{FORUM_DESC}<br /></div><!-- ENDIF -->
<!-- IF MODERATORS or U_MCP -->
<p>
|