Page 1 of 1
Artodia_Helion
Posted: 8. March 2012 15:32
by ZatchBell68
Your Portal Version: 2.0.0b1
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Basic Knowledge
Boardlink: http://www.team-tab.powa.fr
What have you done before the problem was there?
It is for the installation of the portal
What have you already tryed to solve the problem?
Edit html
Description and Message
I just installed your portal and I have a little problem esthetic. Look at the screenshot you will understand better.

If you can help me thank you and good day
Re: Artodia_Helion
Posted: 8. March 2012 19:15
by archivar
Search in news_compact_center.html:
In line 5 of the Code missing.
Code: Select all
<span class="portal-corners-top-inner"></span>
The Line 5 must be:
Code: Select all
<div class="inner"><span class="portal-corners-top-inner"></span>
Re: Artodia_Helion
Posted: 8. March 2012 19:30
by ZatchBell68
The div does not miss the line is as given previously
Code: Select all
<div class="inner"><span class="portal-corners-top-inner"></span>
Re: Artodia_Helion
Posted: 8. March 2012 19:53
by archivar
Refresh your Styles:
"Administration Control Panel" (ACP) > "Styles" > "Templates" > each > "refresh"
"Administration Control Panel" (ACP) > "Styles" > "Themes" > each > "refresh"
"Administration Control Panel" (ACP) > "Styles" > "Imagesets" > each > "refresh"
Clear your cache in the "Administration Control Panel" (ACP) > "General" > "Purge the cache"
Re: Artodia_Helion
Posted: 8. March 2012 19:59
by ZatchBell68
I have already done this changes nothing.
Re: Artodia_Helion
Posted: 8. March 2012 20:01
by archivar
Try it in the ACP in the block the Latest news extra column for Post-count and for show number to de-activate.
And try this:
open: root/styles/art_helion/template/portal/modules/news_compact_center.html
Find
Tip: This may be a partial find and not the whole line.
Code: Select all
{$CC_BLOCK_H_L}
<dt <!-- IF S_DISPLAY_NEWS_RVS -->style="width: 44%"<!-- ELSE -->style="width: 60%"<!-- ENDIF -->>{$TITLE}</dt>
<!-- IF S_DISPLAY_NEWS_RVS -->
<dd class="posts" style="width: 11%">{L_REPLIES}</dd>
<dd class="views" style="width: 11%">{L_VIEWS}</dd>
<!-- ENDIF -->
<dd class="lastpost" style="width: 25%"><span>{L_LAST_POST}</span></dd>
{$CC_BLOCK_H_R}
Replace with
Tip: Replace the preceding line(s) to find with the following lines.
Code: Select all
{$CC_BLOCK_H_L}
{$TITLE}
{$CC_BLOCK_H_R}
Re: Artodia_Helion
Posted: 8. March 2012 21:04
by ZatchBell68
No matter where I put the bug is still the same after you delete and then returned. Against by the non-compact did not have this problem.
With your modification:

Re: Artodia_Helion
Posted: 8. March 2012 21:43
by archivar
ZatchBell68 wrote:No matter where I put the bug is still the same after you delete and then returned. Against by the non-compact did not have this problem.
With your modification:

And try this:
open: root/styles/art_helion/template/portal/modules/news_compact_center.html
Find
Tip: This may be a partial find and not the whole line.
Code: Select all
{$CC_BLOCK_H_L}
<dt <!-- IF S_DISPLAY_NEWS_RVS -->style="width: 44%"<!-- ELSE -->style="width: 60%"<!-- ENDIF -->>{$TITLE}</dt>
<!-- IF S_DISPLAY_NEWS_RVS -->
<dd class="posts" style="width: 11%">{L_REPLIES}</dd>
<dd class="views" style="width: 11%">{L_VIEWS}</dd>
<!-- ENDIF -->
<dd class="lastpost" style="width: 25%"><span>{L_LAST_POST}</span></dd>
{$CC_BLOCK_H_R}
Replace with
Tip: Replace the preceding line(s) to find with the following lines.
Code: Select all
{$CC_BLOCK_H_L}
<dt <!-- IF S_DISPLAY_NEWS_RVS -->style="width: 100%"<!-- ELSE -->style="width: 100%"<!-- ENDIF -->>{$TITLE}</dt>
{$CC_BLOCK_H_R}
Re: Artodia_Helion
Posted: 8. March 2012 21:49
by ZatchBell68
Approaching it but as you can see from the screenshot is not there yet.

Re: Artodia_Helion
Posted: 8. March 2012 21:54
by archivar
ZatchBell68 wrote:Approaching it but as you can see from the screenshot is not there yet.

Last try:
Code: Select all
{$CC_BLOCK_H_L}
<dt>{$TITLE}</dt>
{$CC_BLOCK_H_R}
Re: Artodia_Helion
Posted: 8. March 2012 22:00
by ZatchBell68
Finally it works great

Thank you very much for your help.
Re: Artodia_Helion
Posted: 8. March 2012 22:32
by ZatchBell68
One more question do you know how I can do to remove the left menu bar of my portal (menu theme artodia_helion)

Re: Artodia_Helion
Posted: 9. March 2012 15:11
by archivar
open: root/styles/art_helion/template/overall_header.html
Find
Tip: This may be a partial find and not the whole line.
Code: Select all
<!-- INCLUDE _sidebar_left.html -->
Replace with
Tip: Replace the preceding line(s) to find with the following lines.
Code: Select all
<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
<!-- INCLUDE _sidebar_left.html -->
<!-- ENDIF -->