Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Theme Site Themes => Topic started by: voythas on August 24, 2009, 06:56:49 PM

Title: FoxxyGreen
Post by: voythas on August 24, 2009, 06:56:49 PM
Link to the theme (http://custom.simplemachines.org/themes/index.php?lemma=1901)
(http://custom.simplemachines.org/themes/index.php/action,download/lemma,1901/image,thumb)

Hey,
This is new theme for SMF2.0rc1.2. I ported GreenFox style from vbstyles.com to Simple Machines. All code and images were done by me, they are just highly based on GreenFox.
If you have questions about it or wants me to make other versions of it (different colors or other) just give me a call.
Here is demo: http://burning-brushes.pl/demo/index.php

Enjoy and check my deviantArt (http://voythas.deviantart.com) and forum (http://burning-brushes.pl).
Title: Re: FoxxyGreen
Post by: Cado on August 24, 2009, 07:19:52 PM
Realy VEry nice Theme
Title: Re: FoxxyGreen
Post by: Arantor on August 24, 2009, 07:24:36 PM
Very nice theme indeed - hope you stick around and make some more excellent themes :)
Title: Re: FoxxyGreen
Post by: busterone on August 24, 2009, 09:37:38 PM
Good looking theme. Thanks. :)
Title: Re: FoxxyGreen
Post by: thatjustit on August 25, 2009, 11:17:25 AM
Amazing theme! Thanks for sharing it. :)
Title: Re: FoxxyGreen
Post by: MaXiForum.cz on August 25, 2009, 02:53:29 PM
Realy nice! ;)
Title: Re: FoxxyGreen
Post by: Gmans on August 26, 2009, 03:34:25 PM
best black-green style for SMF, real! :)
Title: Re: FoxxyGreen
Post by: Hostile on August 26, 2009, 04:30:58 PM
I upgraded to RC just so I could use this theme. :)
Title: Re: FoxxyGreen
Post by: Hostile on August 26, 2009, 05:29:14 PM
I'm trying to shoehorn an image from my old forum into the header:

http://www.pwnyguild.com/forums/styles/Carbon/imageset/site_logo.png

Any ideas?
Title: Re: FoxxyGreen
Post by: busterone on August 26, 2009, 08:01:31 PM
look in the theme's styles.css for this -
#logo {

you will find the theme logo name, url, and size etc. Change it here for your graphic. You may have to adjust the properties to fit your image. I did not post it all because I have already edited mine for my forum. :)
Title: Re: FoxxyGreen
Post by: Hostile on August 27, 2009, 09:35:52 AM
Excellent, thanks so much!
Title: Re: FoxxyGreen
Post by: Hostile on August 27, 2009, 09:45:27 AM
I can't seem to get past that last little bit of the table space in the header.

http://demo.pwnyguild.com/

Here was the original code:


#header {
   position: relative;
   height: 200px;
   overflow: hidden;
   background: #2c2c2c url(images/nav_bg.gif) 100% 0 repeat-x;
}

#logo {
   position: absolute;
   top: 0;
   left: 0;
   display: block;
   width: 960px;
   height: 200px;
   background: url(images/site_logo.png) no-repeat;
   cursor: pointer;
}


My changes:


#header {
   position: relative;
   height: 200px;
   overflow: hidden;
}

#logo {
   position: absolute;
   top: 0;
   left: 0;
   display: block;
   width: 960px;
   height: 200px;
   background: url(images/site_logo.png) no-repeat;
   cursor: pointer;
}


Any ideas?
Title: Re: FoxxyGreen
Post by: busterone on August 27, 2009, 06:33:26 PM
The Theme creator would know more about it since he created it, but look at this-
#wrapper {
   max-width: 980px;


Your header and logo are 20 px shorter, set for 960px. 

It appears that 20 px is the difference when I look at your test site.