[Styles DB] *SE Gamer

Any abandoned 3.0.x Styles will be moved to this forum.
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian
Contact:

Re: [Released] *SE Gamer

Post by PlanetStyles.net »

posse wrote:i really like the light theme, but when is the dark theme going to be released? cant wait! really good work!
Thanks for the feedback. :)

Can't make any promises on the dark theme, starting a new job at the weekend. Get the first few shifts under my belt and see how time looks from there. :)
nemoein
Registered User
Posts: 1
Joined: Sun Jun 23, 2013 3:27 pm

Re: [Released] *SE Gamer

Post by nemoein »

light version is awesome, but im waitin for Dark one. Im instaling Light Version for some my sites :)
Matthew2D
Registered User
Posts: 8
Joined: Thu Nov 24, 2011 2:35 am

Re: [Released] *SE Gamer

Post by Matthew2D »

Very nice gaming style!
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian
Contact:

Re: [Released] *SE Gamer

Post by PlanetStyles.net »

Matthew2D wrote:Very nice gaming style!
Thank you. :)
metalmaster
Registered User
Posts: 15
Joined: Mon Feb 20, 2012 11:19 pm
Contact:

Re: [Released] *SE Gamer

Post by metalmaster »

Christian when you open the site bbcustomize.com ?
manidifata
Registered User
Posts: 3
Joined: Sun Jul 07, 2013 1:07 pm

Re: [Released] *SE Gamer

Post by manidifata »

Hy Christian!

The light theme is by far the best theme released in months! i dowloaded and installed it. And it works perfectly and fast loaded.

I'm here to ask any tips. What's the best way to include the forum into my wordpress site? Wp United works?

And if i want to change the background, how i can procede?

Thanks again and i will follow your development! My Madden community always looks to improve standards and features
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian
Contact:

Re: [Released] *SE Gamer

Post by PlanetStyles.net »

Hey, thanks for your amazing feedback. :)
What's the best way to include the forum into my wordpress site? Wp United works?
WP-United should work. Not sure whether or not it's abandoned at the moment, it seems to be in-and-out of development. Can't say I've tried, but if you fancy trying it would be great to see the results. Other than that the only solution I can think of would be to hack up the template code and wrap it around a wordpress style of your choice.
And if i want to change the background, how i can procede?
Open: /styles/SE_Gamer/theme/colours.css

Find:

Code: Select all

html, body {
	color: #353535;
	background: url("{T_THEME_PATH}/images/bg.jpg") repeat left top #f9f9f9;
}
Replace the file path with the location, name and format of your new background image. Additionally you can also replace the repeat properties with either repeat-x, repeat-y or no-repeat. To change the position, top left can be replaced with any combination of top, right, bottom, left or a percentage.

For example, if you wanted your new background not to repeat, to be veritcally aligned to the top, but centered in the middle of the page...you would set the background property to: no-repeat 50% top; .

#confused? :)
manidifata
Registered User
Posts: 3
Joined: Sun Jul 07, 2013 1:07 pm

Re: [Released] *SE Gamer

Post by manidifata »

really not Christian, you're really helpful!

i'm not so good in the stuff, but i'm a fast learning guy. I will try and test.

Thanks a lot, see you around!
manidifata
Registered User
Posts: 3
Joined: Sun Jul 07, 2013 1:07 pm

Re: [Released] *SE Gamer

Post by manidifata »

Christian, this is what i've done for now...

http://www.testforum.thegridirongamers. ... /index.php

The main header is modified (imageset>imagest.cfg>image_site_logo and putted there my own banner) but i noticed it's loaded just over the original image of the theme that still i haven't been able to change. :oops:
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian
Contact:

Re: [Released] *SE Gamer

Post by PlanetStyles.net »

Hello :)

Ah yes, it looks like you're trying to remove the banner background image. The header is indeed made up of two parts, a banner background and a logo overlay.

To remove the background image, open: styles/SE_Gamer/theme/se_gamer.css

Find:

Code: Select all

.headerbar {
	background: url("{T_THEME_PATH}/images/banner.jpg") no-repeat left top #ffffff;
	color: #FFFFFF;
}
Same principles apply for changing the banner background as they do the website background, so you can use the same directions as in my previous post. :)
bmazoka
Registered User
Posts: 1
Joined: Sun Jul 07, 2013 10:54 pm

Re: [Released] *SE Gamer

Post by bmazoka »

Awesome theme! Would love to have the dark one too!
I have a question, I would like to make a tab on the top like "Members" and "Search" that will go to a HTML scripted page with some community information on it.

How do I do this? THanks!
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian
Contact:

Re: [Released] *SE Gamer

Post by PlanetStyles.net »

bmazoka wrote:Awesome theme! Would love to have the dark one too!
I have a question, I would like to make a tab on the top like "Members" and "Search" that will go to a HTML scripted page with some community information on it.

How do I do this? THanks!
Hi :)

To do this, open: /styles/se_gamer/template/overall_header.html

The navbar button code looks like this:

Code: Select all

                    	<ul>
                        	<li<!-- IF SCRIPT_NAME eq 'index' --> class="current"<!-- ENDIF -->><a href="{U_INDEX}">{L_INDEX}</a></li>
                            <li<!-- IF SCRIPT_NAME eq 'faq' --> class="current"<!-- ENDIF -->><a href="{U_FAQ}">{L_FAQ}</a></li>
                            <!-- IF S_DISPLAY_MEMBERLIST -->
                            	<li<!-- IF SCRIPT_NAME eq 'memberlist' --> class="current"<!-- ENDIF -->><a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a></li>
                            <!-- ENDIF -->
                            <!-- IF S_DISPLAY_SEARCH -->
                            	<li<!-- IF SCRIPT_NAME eq 'search' --> class="current"<!-- ENDIF -->><a href="{U_SEARCH}">{L_SEARCH}</a></li>
                            <!-- ENDIF -->
                        </ul>
To add your own link, simply use the following link format...

Code: Select all

<li><a href="http://www.somewhere.net">Your link text</a></li>
...and place it anywhere between <ul> ... </ul> .

Let us know how it goes. :)
User avatar
Arty
Former Team Member
Posts: 16654
Joined: Wed Mar 06, 2002 2:36 pm
Name: Vjacheslav Trushkin
Contact:

Re: [Styles DB] *SE Gamer

Post by Arty »

Vjacheslav Trushkin / Arty.
Free phpBB 3.1 styles | New project: Iconify - modern SVG framework
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian
Contact:

Re: [Styles DB] *SE Gamer

Post by PlanetStyles.net »

Dark version released! :)

Currently only available at AwesomeStyles (SE: Gamer Dark) until it's validated by the phpBB styles Team and phpBB3styles.net. :)

Download: http://www.awesomestyles.com/phpbb3-sty ... gamer-dark
User avatar
Prosk8er
Registered User
Posts: 1744
Joined: Sun Mar 12, 2006 3:30 am
Location: Rochester, NY
Name: Tyler
Contact:

Re: [Styles DB] *SE Gamer

Post by Prosk8er »

Christian 2.0 wrote:Dark version released! :)

Currently only available at AwesomeStyles (SE: Gamer Dark) until it's validated by the phpBB styles Team and phpBB3styles.net. :)

Download: http://www.awesomestyles.com/phpbb3-sty ... gamer-dark
awesome great news i'll check it out

*checked it out looks awesome I already have it ported for kiss portal :)
Locked

Return to “[3.0.x] Abandoned Styles”