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)
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 ?
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
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:
Let me know how you get on?
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 ???
Just upload your desired image and replace the head_bg.png with it.
Thanks that worked ( such a simple solution )
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 :-)
'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.
Glad you like it and thanks for pointing that out ;)