Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Theme Site Themes => Topic started by: The Domain Shop on May 21, 2014, 07:02:14 PM

Title: Regain
Post by: The Domain Shop on May 21, 2014, 07:02:14 PM
Link to the theme (http://custom.simplemachines.org/themes/index.php?lemma=2764)
(http://custom.simplemachines.org/themes/index.php/action,download/lemma,2764/image,thumb)

Dark gray and red styled theme with a flat sort of feel to it. Features social icons in header that can be enabled/deactivated from within admin area. This theme users some css3 which will not render in older browsers.

(http://i.imgur.com/dlmKLdO.png)

Created by:
(http://i.imgur.com/WxKnn7N.png) (http://www.knownbb.com/)

Valid css3
Valid xhtml

For more free themes visit us here (http://themes.knownbb.com)

For theme support visit us here (http://forum.knownbb.com)
Title: Re: Regain
Post by: DasVON on May 22, 2014, 10:27:04 PM
Awesome theme

Just wondering how to change the logo (top right) size. Or for a possible full width Banner (see pic for example)
(http://i.imgur.com/1oWfinE.jpg)
is this possible if so how ?

Title: Re: Regain
Post by: The Domain Shop on May 23, 2014, 03:48:26 PM
Glad you like it.

Look in index.css for #logo to change size and yes its possible, you'll need to make changes to #header in index.css
Title: Re: Regain
Post by: DasVON on May 23, 2014, 08:00:48 PM
Quote from: 'Trax' on May 23, 2014, 03:48:26 PM
Glad you like it.

Look in index.css for #logo to change size and yes its possible, you'll need to make changes to #header in index.css

Thanks .. I will give it a try ASAP  :laugh:
Title: Re: Regain
Post by: The Domain Shop on May 23, 2014, 09:15:50 PM
Let me know how you get on?
Title: Re: Regain
Post by: DasVON on May 23, 2014, 10:49:04 PM
Hey,

Re-sizing the logo was easy but I am having trouble with the banner version

#header {
position: relative;
height: 120px;
overflow: hidden;
background: url(../images/theme/head_bg.png) 0 0 repeat-x;


I want the same height but I could not get it to work. I have my forum at 60% width. could you give me a hint  ???
Title: Re: Regain
Post by: The Domain Shop on May 24, 2014, 02:16:06 PM
Just upload your desired image and replace the head_bg.png with it.
Title: Re: Regain
Post by: DasVON on May 24, 2014, 07:46:18 PM
Thanks that worked ( such a simple solution )
Title: Re: Regain
Post by: The Domain Shop on May 25, 2014, 09:01:52 AM
Quote from: DasVON on May 24, 2014, 07:46:18 PM
Thanks that worked ( such a simple solution )

Glad to hear you've done it :-)
Title: Re: Regain
Post by: Chen Zhen on June 05, 2014, 07:29:12 PM
'Trax',

  Nice looking theme. Some of my users were complaining about it stating invalid cookie for the quick login (top left) whereas I confirmed by testing it. I took a look at the template and noticed that form was missing the cookie time input (ie. hidden - using forum setting since you do not have a drop down option for it).

File: ../Themes/Regain-2014/index.template.php

find:

<input type="submit" value="', $txt['login'], '" class="button_submit" />
<input type="hidden" name="hash_passwrd" value="" />


add after above:

<input type="hidden" name="cookielength" value="', (!empty($modSettings['cookieTime']) ? (int)$modSettings['cookieTime'] : '-1'),'" />


Regards.
Title: Re: Regain
Post by: The Domain Shop on June 06, 2014, 02:51:46 PM
Glad you like it and thanks for pointing that out ;)