Frame in Portal Forums

Support for PhpBB3.
Post here to get help with any phpBB3 related issue
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
If not your topic may be ignored or locked!

Frame in Portal Forums

Post by arrakis »

Good morning

I am new to the forum

I had a request for help

I have a small forum phpbb3 (3.0.6) installed with portal (1.2.2)
I adapted a modified style based on Softbrown (some differences with the prosilver style)
Comment. This is the aspect of index.php

Image

You can see the frame

But this is the aspect of my portal (portal.php)

Image

It not appear the frame.
I have to make a change in style for a one portal file, but I don't know what

An example that works
The Cine-Clasico portal (great Spanish Forum) looks like this

Image

Please anyone tell me what I have to change the code?

Thanks

Re: Frame in Portal Forums

Post by arrakis »

With the mChat I have the same problem

Image

without edge

Stoker or other, can help me?

Re: Frame in Portal Forums

Post by Fire-Fox »

have you guys uploaded the theme to your server? and refreshed the template / theme ?

Re: Frame in Portal Forums

Post by arrakis »

The problem is that I have to change the border of the chat, because the default installed (mChat) the edge will not do

The same with the portal. The edges do not create them as I have in the index.php

I have to manually change lines of code. But i don't know where. Lines of code in FTP syle (in my case a modification of Softbrown style (prosilver)

I was watching this topic
http://www.phpbb.com/community/viewtopi ... 5&start=75
to see if I find the edge of mChat

Re: Frame in Portal Forums

Post by cisco007 »

do you have a link to your site so i can see what it looks like and maybe i can check something!

Re: Frame in Portal Forums

Post by arrakis »

Ok

I I have solved some of the blocks
Christian 2.0 help me in http://www.phpbb.com

This is the code that he told me

Code: Select all

    <div class="forabg">
       <div class="inner">
          <span class="corners-top"><span></span></span>
          <ul class="topiclist">
             <li class="header"><dl><dt>your title here</dt></dl></li>
          </ul>
          <ul class="topiclist forums">
             <li class="row" style="padding: 5px;">Your content here, blah blah blah blah blah</li>
          </ul>
          <span class="corners-bottom"><span></span></span>
       </div>
    </div>
But i have problems with the "News Block"

This is

Code: Select all

    <!-- $Id: news.html,v 1.1 2008/02/09 08:18:16 angelside Exp $ //-->

    <h3>{L_LATEST_NEWS}</h3>

    <!-- BEGIN news_row -->
    <!-- IF news_row.S_NO_TOPICS -->
       <center><span class="gensmall"><strong>{L_NO_NEWS}</strong></span></center>
    <!-- ELSE -->
    <div class="post bg2">
       <div class="inner"><span class="corners-top"><span></span></span>
       <div class="postbody postbody_portal">
          <h4 class="first">{news_row.ATTACH_ICON_IMG}<!-- IF news_row.S_POLL --> <strong>{L_POLL}: </strong><!-- ENDIF --><a href="{news_row.U_VIEW_COMMENTS}"><strong>{news_row.TITLE}</strong></a></h4>
          <ul class="linklist">
             <li>{L_POSTED_BY}: <strong><a href="{news_row.U_USER_PROFILE}">{news_row.POSTER}</a></strong></li>
             <li class="rightside">{news_row.TIME}</li>
          </ul>      
          <br />
          <div class="content">{news_row.TEXT}</div><br />      
          <span style="float: left;">{L_TOPIC_VIEWS}: {news_row.TOPIC_VIEWS} &nbsp;&bull;&nbsp; <a href="{news_row.U_VIEW_COMMENTS}" title="{L_VIEW_COMMENTS}">{L_COMMENTS}: {news_row.REPLIES}</a> &nbsp;&bull;&nbsp; <a href="{news_row.U_POST_COMMENT}">{L_POST_REPLY}</a></span>
          <span style="float: right;">{news_row.OPEN}<a href="{news_row.U_READ_FULL}">{news_row.L_READ_FULL}</a>{news_row.CLOSE}</span>
       </div>
       <div class="back2top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div>
       <span class="corners-bottom"><span></span></span></div>
    </div>

    <hr class="divider" />
    <!-- ENDIF -->
    <!-- IF news_row.S_NOT_LAST --><!--<br />--><!-- ENDIF -->
    <!-- END news_row -->
My forum is http://advenzone.net/
http://advenzone.net/portal.php
http://advenzone.net/index.php

I have change in the index mChat too

phpbb 3.0.6

Thanks

I do It! :)

Code: Select all

<!-- $Id: news.html,v 1.1 2008/02/09 08:18:16 angelside Exp $ //-->

<div class="forabg">
   <div class="inner">
      <span class="corners-top"><span></span></span>
      <ul class="topiclist">
         <li class="header"><dl><dt>{L_LATEST_NEWS}</dt></dl></li>
      </ul>
      <ul class="topiclist forums">
         <li class="row" style="padding: 5px;">

<!-- BEGIN news_row -->
<!-- IF news_row.S_NO_TOPICS -->
	<center><span class="gensmall"><strong>{L_NO_NEWS}</strong></span></center>
<!-- ELSE -->
<div class="post bg2">
	<div class="inner"><span class="corners-top"><span></span></span>
	<div class="postbody postbody_portal">
		<h4 class="first">{news_row.ATTACH_ICON_IMG}<!-- IF news_row.S_POLL --> <strong>{L_POLL}: </strong><!-- ENDIF --><a href="{news_row.U_VIEW_COMMENTS}"><strong>{news_row.TITLE}</strong></a></h4>
		<ul class="linklist">
			<li>{L_POSTED_BY}: <strong><a href="{news_row.U_USER_PROFILE}">{news_row.POSTER}</a></strong></li>
			<li class="rightside">{news_row.TIME}</li>
		</ul>		
		<br />
		<div class="content">{news_row.TEXT}</div><br />		
		<span style="float: left;">{L_TOPIC_VIEWS}: {news_row.TOPIC_VIEWS} &nbsp;&bull;&nbsp; <a href="{news_row.U_VIEW_COMMENTS}" title="{L_VIEW_COMMENTS}">{L_COMMENTS}: {news_row.REPLIES}</a> &nbsp;&bull;&nbsp; <a href="{news_row.U_POST_COMMENT}">{L_POST_REPLY}</a></span>
		<span style="float: right;">{news_row.OPEN}<a href="{news_row.U_READ_FULL}">{news_row.L_READ_FULL}</a>{news_row.CLOSE}</span>
	</div>
	<div class="back2top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div>
	<span class="corners-bottom"><span></span></span></div>
</div>

<hr class="divider" />
<!-- ENDIF -->
<!-- IF news_row.S_NOT_LAST --><!--<br />--><!-- ENDIF -->
<!-- END news_row --></li>
      </ul>
      <span class="corners-bottom"><span></span></span>
   </div>
</div>
I only need the table mChat