[ABD] ExtremeDark Red for phpBB 3.0.0

Any abandoned 3.0.x Styles will be moved to this forum.
User avatar
prototech
Former Team Member
Posts: 5406
Joined: Mon Mar 19, 2007 2:04 pm
Location: Southern California

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by prototech »

Perryhb wrote:Hello did you guys get the delete problem fixed? When I add this value="{YES_VALUE}"
Take a look at this post.
Woblee wrote:How can I change the RED in the reply/pm/newpost box to a grey colour?
In stylesheet.css, find and edit:

Code: Select all

textarea {
	background: #800000;
	color: #FFF;
	font: normal 1.2em Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.4em;
	border: 1px solid #F00;
	padding: 2px;
}

Code: Select all

.post {
	background: #C8C8C8;
	border: 1px solid #F00;
}
Woblee wrote:Also, how could I change the RED in the listboxes to a more sutble colour?
Which listboxes are you referring to?
Need help with MOD/style installations or other phpBB problems? Contact me for a quote.
Perryhb
Registered User
Posts: 154
Joined: Sun Aug 27, 2006 5:26 am

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by Perryhb »

Thanks a lot I did look at that link you posted and included it in my question, and I tried that and it didn't help.

I don't want to do like R7i1c3K did found here
http://www.phpbb.com/community/viewtopi ... &p=4854645
and switch to another style and codeblack that people are talking about is no where near as nice as this one looks. I absolutely love this style and really need to keep it badly.

Are there any other fixes for the delete problem that is happening with this style? Please let me know I'd really appreciate it, thank you very much for your help.
Elias Raven
Registered User
Posts: 2
Joined: Mon Mar 31, 2008 10:51 am

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by Elias Raven »

I make this...

Open
./styles/Extremdarkred/template/confirm_body.html
to replace all with

Code: Select all

<!-- INCLUDE overall_header.html --> 

<form name="confirm" action="{S_CONFIRM_ACTION}" method="post"> 
   {$BEGIN_TCORNERS}{MESSAGE_TITLE}{$END_TCORNERS} 
   <div class="tablebg"> 
      <div class="row1" align="center"><p class="genmed">{MESSAGE_TEXT}<br /><br /></p>{S_HIDDEN_FIELDS} 
      <input type="submit" class="button" name="confirm" value="{YES_VALUE}" />&nbsp;&nbsp; 
      <input type="submit" class="button" name="cancel" value="{L_NO}" class="button" /></div> 
   </div> 
   {$BCORNERS} 
</form> 

<br /> 

<div align="{S_CONTENT_FLOW_END}"><!-- INCLUDE jumpbox.html --></div> 

<!-- INCLUDE overall_footer.html -->
After than: ACP > Style > Template and delete Cache

This should work as it did by me.
Gruß
Elias
phpBB 3.0.4
http://www.ufp-headquarters.de
Rhine_
Registered User
Posts: 127
Joined: Sat Mar 15, 2008 4:45 pm

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by Rhine_ »

The Report doesnt work, how Do I fix it?
chase_turpin
Registered User
Posts: 469
Joined: Fri Jun 10, 2005 12:02 am
Location: South Carolina
Contact:

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by chase_turpin »

You guys may already know about this but the delete and unlock features do not work on 3.0.1
My current project Gamer Union Any and all help is welcome!
Woblee
Registered User
Posts: 60
Joined: Mon Mar 29, 2004 11:55 pm
Contact:

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by Woblee »

Many thanks for the previous reply. I mean the quick mod and quick jump boxes.


Also and more importantly, the quick mod tools doesnt work, I cannot lock or delete a post. Have noticed that when you try to use these, that the 2 buttons which should be displayed are YES/NO but on this style it shows as YES BUTTON/NO
Rhine_
Registered User
Posts: 127
Joined: Sat Mar 15, 2008 4:45 pm

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by Rhine_ »

Ive fixed the report problem.

Open

Code: Select all

 ./styles/extremedarkred/template/report_body.html
Replace everything with this

Code: Select all

<!-- INCLUDE overall_header.html -->

<form method="post" id="report" action="{S_REPORT_ACTION}">


<table class="tablebg" width="100%" cellspacing="1">
{$BEGIN_TCORNERS}{L_REPORT_POST}{$END_TCORNERS}
<tr>
	<td class="row3" colspan="2"><span class="gensmall">{L_REPORT_POST_EXPLAIN}</span></td>
</tr>
<tr>
	<td class="row1" width="22%" align="right"><strong><span class="gen">{L_REASON}:</span></strong></td>
	<td class="row2" width="78%"><select name="reason_id">
		<!-- BEGIN reason --><option value="{reason.ID}"<!-- IF reason.S_SELECTED --> selected="selected"<!-- ENDIF -->>{reason.TITLE}: {reason.DESCRIPTION}</option><!-- END reason -->
	</select></td>
</tr>
<!-- IF S_CAN_NOTIFY -->
	<tr>
		<td class="row1" align="right"><span class="gen"><strong>{L_REPORT_NOTIFY}:</strong></span><br />
		<span class="gensmall">{L_REPORT_NOTIFY_EXPLAIN}</span></td>
		<td class="row2"><span class="gen"><input type="radio" class="radio" name="notify" value="1"<!-- IF S_NOTIFY --> checked="checked"<!-- ENDIF --> />&nbsp; {L_YES} &nbsp;<input type="radio" class="radio" name="notify" value="0"<!-- IF not S_NOTIFY --> checked="checked"<!-- ENDIF --> />&nbsp; {L_NO}</span></td>
	</tr>
<!-- ENDIF -->
<tr>
	<td class="row1" valign="top" align="right"	><span class="gen"><strong>{L_MORE_INFO}:</strong></span><br />
	<span class="gensmall">{L_CAN_LEAVE_BLANK}</span></td>
	<td class="row2"><textarea class="post" name="report_text" rows="10" cols="50">{REPORT_TEXT}</textarea></td>
</tr>
<tr>
	<td class="cat" colspan="2" align="center"><input type="submit" name="submit" class="button" value="{L_SUBMIT}" />&nbsp;<input type="submit" name="cancel" class="button" value="{L_CANCEL}" /></td>
</tr>
</table>
{$BCORNERS}
{S_FORM_TOKEN}
</form>



<div class="end"><!-- INCLUDE jumpbox.html --></div>

<!-- INCLUDE overall_footer.html -->
Then delete cache for extremedarkred at

ACP > Style > Template

and it should work. Works great for me now.
Rhine_
Registered User
Posts: 127
Joined: Sat Mar 15, 2008 4:45 pm

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by Rhine_ »

Woblee wrote:Many thanks for the previous reply. I mean the quick mod and quick jump boxes.


Also and more importantly, the quick mod tools doesnt work, I cannot lock or delete a post. Have noticed that when you try to use these, that the 2 buttons which should be displayed are YES/NO but on this style it shows as YES BUTTON/NO
chase_turpin wrote:You guys may already know about this but the delete and unlock features do not work on 3.0.1
Check above post.
Elias Raven wrote:I make this...

Open
./styles/Extremdarkred/template/confirm_body.html
to replace all with

Code: Select all

<!-- INCLUDE overall_header.html --> 

<form name="confirm" action="{S_CONFIRM_ACTION}" method="post"> 
   {$BEGIN_TCORNERS}{MESSAGE_TITLE}{$END_TCORNERS} 
   <div class="tablebg"> 
      <div class="row1" align="center"><p class="genmed">{MESSAGE_TEXT}<br /><br /></p>{S_HIDDEN_FIELDS} 
      <input type="submit" class="button" name="confirm" value="{YES_VALUE}" />   
      <input type="submit" class="button" name="cancel" value="{L_NO}" class="button" /></div> 
   </div> 
   {$BCORNERS} 
</form> 

<br /> 

<div align="{S_CONTENT_FLOW_END}"><!-- INCLUDE jumpbox.html --></div> 

<!-- INCLUDE overall_footer.html -->
After than: ACP > Style > Template and delete Cache

This should work as it did by me.
SLAMO
Registered User
Posts: 15
Joined: Wed Apr 09, 2008 9:54 am

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by SLAMO »

Hi All

How is it with style of ExtremeDark Red?
Will there be a full version?
There are som mistakes about it.When will that mistakes be abolished?

the edit of sent PM can´t be used...there is a wrong button - it displays "yes button"
the subject locking doesn´t work - the same problem with bbutton...
and the change of the author accessiion doesn´t work,too..


(translation daughter, I minimum english, I am for Slovakia)

Very Thank you
DannoCFR
Registered User
Posts: 1
Joined: Thu May 18, 2006 6:41 pm

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by DannoCFR »

How can I center the logo.
Perryhb
Registered User
Posts: 154
Joined: Sun Aug 27, 2006 5:26 am

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by Perryhb »

When you all are listing this

"Open
./styles/Extremdarkred/template/confirm_body.html "

Does that have anything to do with the delete problem, or are you only listing help with that for the report problem?

Also not sure what is meant by delete doesn't work in 3.0.1 since everyone should be able to delete their own posts.

Anyone know how to fix delete problem for extremedarkred? Not able to delete own posts.
Please let me know, would really appreciate some help with this, thanks a lot.
Rhine_
Registered User
Posts: 127
Joined: Sat Mar 15, 2008 4:45 pm

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by Rhine_ »

Perryhb wrote:When you all are listing this

"Open
./styles/Extremdarkred/template/confirm_body.html "

Does that have anything to do with the delete problem, or are you only listing help with that for the report problem?

Also not sure what is meant by delete doesn't work in 3.0.1 since everyone should be able to delete their own posts.

Anyone know how to fix delete problem for extremedarkred? Not able to delete own posts.
Please let me know, would really appreciate some help with this, thanks a lot.
Yes that has to do with the delete problem.
Perryhb
Registered User
Posts: 154
Joined: Sun Aug 27, 2006 5:26 am

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by Perryhb »

Thanks, still didn't help. I made sure I'm a moderator in all forums should be able to delete any posts. When I switch back over to original templates everything deletes fine. Juct can't delete with this template.
Any one else have this problem and know how to fix it? Please let me know, thank you very much.
User avatar
prototech
Former Team Member
Posts: 5406
Joined: Mon Mar 19, 2007 2:04 pm
Location: Southern California

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by prototech »

Try purging your board's cache in the ACP.
Need help with MOD/style installations or other phpBB problems? Contact me for a quote.
Perryhb
Registered User
Posts: 154
Joined: Sun Aug 27, 2006 5:26 am

Re: [ Release ] ExtremeDark Red for phpBB 3.0.0

Post by Perryhb »

Thanks very much, didn't help. I installed brand new unconverted forums online and always same problem. Finally had to switch to a different style I didn't like as much but no longer a problem. Seems to be only a problem with extreme red.
Locked

Return to “[3.0.x] Abandoned Styles”