[Release] Terayon 4.0.25 (phpBB 3.0.12)

For style authors to post and receive feedback on 3.0.x styles still in development. Any development styles you wish to use on your live board should be installed with caution!
Get Involved
Locked
User avatar
lithosphere
Registered User
Posts: 136
Joined: Tue Aug 08, 2006 3:02 am
Location: Canada

Re: [Release] Terayon 4.0.23 (phpBB 3.0.11)

Post by lithosphere »

For those of you who have modified your forum and this theme to work with your modified forum here are the code changes. (remember to backup before attempting)

Open overall_footer.html

Code: Select all

</div>
<div class="v2">&nbsp </div>
</div>

<div id="page-footer">	
	<div class="copyright">{CREDIT_LINE}
		<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
		<!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF -->
		<!-- IF U_ACP --><br /><strong><a href="{U_ACP}">{L_ACP}</a></strong><!-- ENDIF -->
		<br />Terayon 4 style created by <a href="http://www.lithovationstudios.com/">Lithovation Studios</a> &copy; 
	</div>
	<div>
		<a id="bottom" name="bottom" accesskey="z"></a>
		<!-- IF not S_IS_BOT -->{RUN_CRON_TASK}<!-- ENDIF -->
	</div>
</div>
</body>
</html>
Insert before the first line.

Code: Select all

	<div class="navbar">
		<div class="inner"><span class="corners-top"><span></span></span>
		<ul class="linklist">
			<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
				<!-- IF not S_IS_BOT -->
					<!-- IF S_WATCH_FORUM_LINK --><li <!-- IF S_WATCHING_FORUM -->class="icon-unsubscribe"<!-- ELSE -->class="icon-subscribe"<!-- ENDIF -->><a href="{S_WATCH_FORUM_LINK}" title="{S_WATCH_FORUM_TITLE}">{S_WATCH_FORUM_TITLE}</a></li><!-- ENDIF -->
					<!-- IF U_WATCH_TOPIC --><li <!-- IF S_WATCHING_TOPIC -->class="icon-unsubscribe"<!-- ELSE -->class="icon-subscribe"<!-- ENDIF -->><a href="{U_WATCH_TOPIC}" title="{L_WATCH_TOPIC}">{L_WATCH_TOPIC}</a></li><!-- ENDIF -->
					<!-- IF U_BOOKMARK_TOPIC --><li class="icon-bookmark"><a href="{U_BOOKMARK_TOPIC}" title="{L_BOOKMARK_TOPIC}">{L_BOOKMARK_TOPIC}</a></li><!-- ENDIF -->
					<!-- IF U_BUMP_TOPIC --><li class="icon-bump"><a href="{U_BUMP_TOPIC}" title="{L_BUMP_TOPIC}">{L_BUMP_TOPIC}</a></li><!-- ENDIF -->
				<!-- ENDIF -->			
		</ul>
		<span class="corners-bottom"><span></span></span></div>
	</div>
So that it now looks something like this

Code: Select all

	<div class="navbar">
		<div class="inner"><span class="corners-top"><span></span></span>
		<ul class="linklist">
			<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
				<!-- IF not S_IS_BOT -->
					<!-- IF S_WATCH_FORUM_LINK --><li <!-- IF S_WATCHING_FORUM -->class="icon-unsubscribe"<!-- ELSE -->class="icon-subscribe"<!-- ENDIF -->><a href="{S_WATCH_FORUM_LINK}" title="{S_WATCH_FORUM_TITLE}">{S_WATCH_FORUM_TITLE}</a></li><!-- ENDIF -->
					<!-- IF U_WATCH_TOPIC --><li <!-- IF S_WATCHING_TOPIC -->class="icon-unsubscribe"<!-- ELSE -->class="icon-subscribe"<!-- ENDIF -->><a href="{U_WATCH_TOPIC}" title="{L_WATCH_TOPIC}">{L_WATCH_TOPIC}</a></li><!-- ENDIF -->
					<!-- IF U_BOOKMARK_TOPIC --><li class="icon-bookmark"><a href="{U_BOOKMARK_TOPIC}" title="{L_BOOKMARK_TOPIC}">{L_BOOKMARK_TOPIC}</a></li><!-- ENDIF -->
					<!-- IF U_BUMP_TOPIC --><li class="icon-bump"><a href="{U_BUMP_TOPIC}" title="{L_BUMP_TOPIC}">{L_BUMP_TOPIC}</a></li><!-- ENDIF -->
				<!-- ENDIF -->			
		</ul>
		<span class="corners-bottom"><span></span></span></div>
	</div>

</div>
<div class="v2">&nbsp </div>
</div>

<div id="page-footer">	
	<div class="copyright">{CREDIT_LINE}
		<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
		<!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF -->
		<!-- IF U_ACP --><br /><strong><a href="{U_ACP}">{L_ACP}</a></strong><!-- ENDIF -->
		<br />Terayon 4 style created by <a href="http://www.lithovationstudios.com/">Lithovation Studios</a> &copy; 
	</div>
	<div>
		<a id="bottom" name="bottom" accesskey="z"></a>
		<!-- IF not S_IS_BOT -->{RUN_CRON_TASK}<!-- ENDIF -->
	</div>
</div>
</body>
</html>
Save and upload.
I have wasted my hours -Leonardo Da Vinci
mypoody
Registered User
Posts: 4
Joined: Tue Oct 23, 2012 4:45 am

Re: [Release] Terayon 4.0.24 (phpBB 3.0.11)

Post by mypoody »

Why can't I edit the stylesheets? I can flat out erase all of the stylesheets from my template file and it has almost no effect. What's the deal, does it have to do with themeswitcher?

I'm trying to customize the look of the template by adjusting it to a width of 960px instead of the 80% in the custom.css, but when i change it nothing happens, it reverts back to the original 80%.

Anyone know how to actually edit the code?
User avatar
lithosphere
Registered User
Posts: 136
Joined: Tue Aug 08, 2006 3:02 am
Location: Canada

Re: [Release] Terayon 4.0.24 (phpBB 3.0.11)

Post by lithosphere »

Hiya,

Open common.css around line 110 look for

Code: Select all

/* Main blocks
---------------------------------------- */
#wrap {
    margin-left: auto;
    margin-right: auto;
	margin-top: 10px;
	margin-bottom: 5px;
    width: 80%;
	min-width: 651px;
	background-color: #D9D9D9;
	clear:both;
}
change width:80%; to width:960px;

Code: Select all

/* Main blocks
---------------------------------------- */
#wrap {
    margin-left: auto;
    margin-right: auto;
	margin-top: 10px;
	margin-bottom: 5px;
    width: 960px;
	min-width: 651px;
	background-color: #D9D9D9;
	clear:both;
}
Save and upload.

Also if you're experiencing templates not updating despite changes you made, you may need to refresh the template, themes, imagesets cache. Login to your Admin Control Panel in your forum, click on the style tab at the top. Then click on templates etc and click on refresh. Alternatively you can also click on general this is the front page of your admin panel...on the left side scroll down until you see Load Settings click on it and look for

Recompile stale style components:
Check for updated style components on filesystem and recompile.


Click on yes and submit. This should refresh your forums style cache etc..your changes should now be present.
I have wasted my hours -Leonardo Da Vinci
mypoody
Registered User
Posts: 4
Joined: Tue Oct 23, 2012 4:45 am

Re: [Release] Terayon 4.0.24 (phpBB 3.0.11)

Post by mypoody »

Thank God, I felt like an idiot. I was trying everything! I've never had a caching problem before. I'm a web designer and I was writing all kinds of codes from "!importants" to editing the javascript... you name it! The first option of clearing the themes cache didn't work, but setting the load settings surely did.

Thanks so much!
User avatar
lithosphere
Registered User
Posts: 136
Joined: Tue Aug 08, 2006 3:02 am
Location: Canada

Re: [Release] Terayon 4.0.24 (phpBB 3.0.11)

Post by lithosphere »

Glad I could help cyas :)
I have wasted my hours -Leonardo Da Vinci
AdamTR
Registered User
Posts: 1
Joined: Mon Jan 07, 2013 6:13 pm

Re: [Release] Terayon 4.0.24 (phpBB 3.0.11)

Post by AdamTR »

I would like to know how to change the posting font size and color of Terayon.
Any tips on were exactly to edit? I have no idea, I'm kinda new to this.. thanks!
codehex
Registered User
Posts: 5
Joined: Thu Apr 03, 2014 5:15 pm

Re: [Release] Terayon 4.0.24 (phpBB 3.0.11)

Post by codehex »

How do I put the "blue line" in correct position? This in memberlist.php?
User avatar
lithosphere
Registered User
Posts: 136
Joined: Tue Aug 08, 2006 3:02 am
Location: Canada

Re: [Release] Terayon 4.0.24 (phpBB 3.0.11)

Post by lithosphere »

Hiya, please check your email.

Like I mentioned you should use another theme currently updated to run on the latest version of phpBB. I've halted updating this theme. I may release an update or not, but yea please consider updating your forums and using an updated theme.

Good luck ;)
I have wasted my hours -Leonardo Da Vinci
codehex
Registered User
Posts: 5
Joined: Thu Apr 03, 2014 5:15 pm

Re: [Release] Terayon 4.0.24 (phpBB 3.0.11)

Post by codehex »

Do you know how to change the white space to grey colour as the rest of it?

http://www.tiikoni.com/tis/view/?id=8a0be0d
User avatar
Hippie459MN
Registered User
Posts: 964
Joined: Mon Oct 15, 2007 10:13 pm
Location: Minnesota, USA
Contact:

Re: [Release] Terayon 4.0.24 (phpBB 3.0.11)

Post by Hippie459MN »

codehex wrote:Do you know how to change the white space to grey colour as the rest of it?

http://www.tiikoni.com/tis/view/?id=8a0be0d
There is no image there. Says it expired.
User avatar
lithosphere
Registered User
Posts: 136
Joined: Tue Aug 08, 2006 3:02 am
Location: Canada

Re: [Release] Terayon 4.0.25 (phpBB 3.0.12)

Post by lithosphere »

Just a small bump to remind those of you still using the older version of my style that I've updated it to the latest phpBB3 release. Enjoy :)
I have wasted my hours -Leonardo Da Vinci
sag-sag
Registered User
Posts: 2
Joined: Fri Oct 11, 2013 8:44 pm
Contact:

Re: [Release] Terayon 4.0.25 (phpBB 3.0.12)

Post by sag-sag »

Very cool style! I want to hope that the author will not throw.
charliee
Registered User
Posts: 169
Joined: Sun Nov 06, 2011 2:49 am

Re: [Release] Terayon 4.0.25 (phpBB 3.0.12)

Post by charliee »

Having trouble with text loading in the wrong place, "The Panel." is a forum category and those load right but useradded text like "M-chat" is loaded on the line below.
Image

It also happens in easyportal.
Image

It only happens in internet explorer, looks great in firefox.
Can anyone point me in the right direction how to fix this?
Locked

Return to “[3.0.x] Styles in Development”