Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Theme Site Themes => Topic started by: Diego Andrés on July 30, 2014, 11:08:08 AM

Title: Reseller
Post by: Diego Andrés on July 30, 2014, 11:08:08 AM
Link to the theme (https://custom.simplemachines.org/index.php?theme=2806)
(https://custom.simplemachines.org/index.php?action=download;theme=2806;attach=233834;image;thumb)

(https://smftricks.com/logos/logo.png) (https://smftricks.com/)
Free & Premium Responsive Themes for SMF

(https://i.imgur.com/9nONUnH.png)

(https://img.shields.io/badge/License-MIT-a05a3f?style=flat-square) (https://img.shields.io/badge/SMF-2.0-996ee1?style=flat-square) (https://img.shields.io/badge/Responsive-Yes-6e97e1?style=flat-square)

Reseller
Developed by Daniiel (https://www.simplemachines.org/community/index.php?action=profile;u=269838)
Designed by Brian Casillas (https://www.simplemachines.org/community/index.php?action=profile;u=404087)


Features

Languages
(https://www.simplemachines.org/site_images/lang/english.gif) (https://www.simplemachines.org/site_images/lang/spanish.gif)


Demo Online (http://demo.smftricks.com/index.php?theme=50)
GitHub (https://github.com/SMFTricks/Reseller)
Title: Re: Reseller
Post by: -Captain Ghost- on July 30, 2014, 11:15:55 AM
Only two word "Good job"  ;D

I think it's first responsive theme for smf ??

One question that is to possible to make menu bar visible if we scroll downward like http://wpcentral.com

Thanks
Title: Re: Reseller
Post by: Diego Andrés on July 30, 2014, 11:27:56 AM
Sure, just edit the reseller.css, find this
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
}


Replace with
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
position: fixed;
top: 0;
width: 100%;
z-index: 10000;
}


And find
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
}


Replace with
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
margin-top: 50px;
}


Try  :P
Title: Re: Reseller
Post by: -Captain Ghost- on July 30, 2014, 11:33:50 AM
Thanks for replying with speed of light  ;D
Will check and tell you.
Title: Re: Reseller
Post by: -Captain Ghost- on July 30, 2014, 11:44:17 AM
Quote from: Diego Andrés on July 30, 2014, 11:27:56 AM
Sure, just edit the reseller.css, find this
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
}


Replace with
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
position: fixed;
top: 0;
width: 100%;
z-index: 10000;
}


And find
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
}


Replace with
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
margin-top: 50px;
}


Try  :P

It worked but one last question that can you add any css style(Do know what to say to this) to this like fade in fade out or other.  :)
Title: Re: Reseller
Post by: Daniiel on July 30, 2014, 08:56:40 PM
Quote from: r4ll on July 30, 2014, 11:44:17 AM
It worked but one last question that can you add any css style(Do know what to say to this) to this like fade in fade out or other.  :)

I do not understand what you're trying to say, can you explain better?
Title: Re: Reseller
Post by: -Captain Ghost- on July 30, 2014, 11:22:06 PM
Is there any way to add effects (like hover) to the menu bar when it is going up or down just like wpcentral.com

Thanks  :)
Title: Re: Reseller
Post by: -Captain Ghost- on July 31, 2014, 01:55:15 PM
Can you tell the name of font used in logo  ;D
Title: Re: Reseller
Post by: Daniiel on July 31, 2014, 05:02:25 PM
Quote from: r4ll on July 30, 2014, 11:22:06 PM
Is there any way to add effects (like hover) to the menu bar when it is going up or down just like wpcentral.com

Thanks  :)

Index.template.php
Search:
<script type="text/javascript">
$(document).ready(function(){
$("input[type=button]").attr("class", "btn btn-default btn-sm");
$(".button_submit").attr("class", "btn btn-primary btn-sm");
$("#advanced_search input[type=\'text\'], #search_term_input input[type=\'text\']").removeAttr("size");
$(".table_grid").attr("class", "table table-striped");
$("img[alt=\'', $txt['new'], '\'], img.new_posts").replaceWith("<span class=\'label label-warning\'>', $txt['new'], '</span>");
$("#profile_success").removeAttr("id").removeClass("windowbg").addClass("alert alert-success");
$("#profile_error").removeAttr("id").removeClass("windowbg").addClass("alert alert-danger");
});
</script>


Replace with:
<script type="text/javascript">
$(document).ready(function(){
var previousScroll = 0, headerOrgOffset = $("nav").height();
$(window).scroll(function () {
    var currentScroll = $(this).scrollTop();
    if (currentScroll > headerOrgOffset) {
        if (currentScroll > previousScroll) {
            $("nav").fadeOut();
        } else {
            $("nav").fadeIn();
        }
    } else {
            $("nav").fadeIn();
    }
    previousScroll = currentScroll;
});
$("input[type=button]").attr("class", "btn btn-default btn-sm");
$(".button_submit").attr("class", "btn btn-primary btn-sm");
$("#advanced_search input[type=\'text\'], #search_term_input input[type=\'text\']").removeAttr("size");
$(".table_grid").attr("class", "table table-striped");
$("img[alt=\'', $txt['new'], '\'], img.new_posts").replaceWith("<span class=\'label label-warning\'>', $txt['new'], '</span>");
$("#profile_success").removeAttr("id").removeClass("windowbg").addClass("alert alert-success");
$("#profile_error").removeAttr("id").removeClass("windowbg").addClass("alert alert-danger");
});
</script>




Quote from: r4ll on July 31, 2014, 01:55:15 PM
Can you tell the name of font used in logo  ;D

The name of the font is "Intro"

Title: Re: Reseller
Post by: Neekiinh0 on July 31, 2014, 05:50:27 PM
Muchos errores para validar daniel, fijate en eso! El diseño plano esta bien logrado!
Title: Re: Reseller
Post by: Antes on July 31, 2014, 07:01:07 PM
Pretty please keep English in this board.
Title: Re: Reseller
Post by: Neekiinh0 on July 31, 2014, 10:22:21 PM
Ok, try to validate all the errors you have. The flat design very good.
Title: Re: Reseller
Post by: Daniiel on July 31, 2014, 11:01:17 PM
Quote from: Neekiinh0 on July 31, 2014, 10:22:21 PM
Ok, try to validate all the errors you have. The flat design very good.
The theme is validated or else they would not have approved. Remember validate as HTML5.

Title: Re: Reseller
Post by: -Captain Ghost- on July 31, 2014, 11:40:57 PM
Sorry but again i need your help.
How can i implement this go to top http://codepen.io/rdallaire/pen/apoyx

Thanks,
Title: Re: Reseller
Post by: Daniiel on July 31, 2014, 11:50:56 PM
Quote from: r4ll on July 31, 2014, 11:40:57 PM
Sorry but again i need your help.
How can i implement this go to top http://codepen.io/rdallaire/pen/apoyx

Thanks,
Easy.
Index.template.php
Search:
// Show right to left and the character set for ease of translating.
echo '<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
<head>
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/reseller.css" />
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css?fin20" />';


Replace with:
// Show right to left and the character set for ease of translating.
echo '<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
<head>
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/reseller.css" />
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css?fin20" />';


Search:
<script type="text/javascript">
$(document).ready(function(){
var previousScroll = 0, headerOrgOffset = $("nav").height();
$(window).scroll(function () {
    var currentScroll = $(this).scrollTop();
    if (currentScroll > headerOrgOffset) {
        if (currentScroll > previousScroll) {
            $("nav").fadeOut();
        } else {
            $("nav").fadeIn();
        }
    } else {
            $("nav").fadeIn();
    }
    previousScroll = currentScroll;
});
$("input[type=button]").attr("class", "btn btn-default btn-sm");
$(".button_submit").attr("class", "btn btn-primary btn-sm");
$("#advanced_search input[type=\'text\'], #search_term_input input[type=\'text\']").removeAttr("size");
$(".table_grid").attr("class", "table table-striped");
$("img[alt=\'', $txt['new'], '\'], img.new_posts").replaceWith("<span class=\'label label-warning\'>', $txt['new'], '</span>");
$("#profile_success").removeAttr("id").removeClass("windowbg").addClass("alert alert-success");
$("#profile_error").removeAttr("id").removeClass("windowbg").addClass("alert alert-danger");
});
</script>


Replace with:
<script type="text/javascript">
$(document).ready(function(){
var previousScroll = 0, headerOrgOffset = $("nav").height();
$(window).scroll(function () {
    var currentScroll = $(this).scrollTop();
    if (currentScroll > headerOrgOffset) {
        if (currentScroll > previousScroll) {
            $("nav").fadeOut();
        } else {
            $("nav").fadeIn();
        }
    } else {
            $("nav").fadeIn();
    }
    previousScroll = currentScroll;
});
$(window).scroll(function() {
    if ($(this).scrollTop() >= 50) {        // If page is scrolled more than 50px
        $("#return-to-top").fadeIn(200);    // Fade in the arrow
    } else {
        $("#return-to-top").fadeOut(200);   // Else fade out the arrow
    }
});
$("#return-to-top").click(function() {      // When arrow is clicked
    $("body,html").animate({
        scrollTop : 0                       // Scroll to top of body
    }, 500);
});
$("input[type=button]").attr("class", "btn btn-default btn-sm");
$(".button_submit").attr("class", "btn btn-primary btn-sm");
$("#advanced_search input[type=\'text\'], #search_term_input input[type=\'text\']").removeAttr("size");
$(".table_grid").attr("class", "table table-striped");
$("img[alt=\'', $txt['new'], '\'], img.new_posts").replaceWith("<span class=\'label label-warning\'>', $txt['new'], '</span>");
$("#profile_success").removeAttr("id").removeClass("windowbg").addClass("alert alert-success");
$("#profile_error").removeAttr("id").removeClass("windowbg").addClass("alert alert-danger");
});
</script>


Search:
<footer>

Replace with:
<a href="javascript:" id="return-to-top"><i class="icon-chevron-up"></i></a>
<footer>


Reseller.css
Add to the end:
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}
Title: Re: Reseller
Post by: -Captain Ghost- on July 31, 2014, 11:59:43 PM
Quote from: Daniiel on July 31, 2014, 11:50:56 PM
Quote from: r4ll on July 31, 2014, 11:40:57 PM
Sorry but again i need your help.
How can i implement this go to top http://codepen.io/rdallaire/pen/apoyx

Thanks,
Easy.
Index.template.php
Search:
// Show right to left and the character set for ease of translating.
echo '<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
<head>
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/reseller.css" />
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css?fin20" />';


Replace with:
// Show right to left and the character set for ease of translating.
echo '<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
<head>
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/reseller.css" />
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css?fin20" />';


Search:
<script type="text/javascript">
$(document).ready(function(){
var previousScroll = 0, headerOrgOffset = $("nav").height();
$(window).scroll(function () {
    var currentScroll = $(this).scrollTop();
    if (currentScroll > headerOrgOffset) {
        if (currentScroll > previousScroll) {
            $("nav").fadeOut();
        } else {
            $("nav").fadeIn();
        }
    } else {
            $("nav").fadeIn();
    }
    previousScroll = currentScroll;
});
$("input[type=button]").attr("class", "btn btn-default btn-sm");
$(".button_submit").attr("class", "btn btn-primary btn-sm");
$("#advanced_search input[type=\'text\'], #search_term_input input[type=\'text\']").removeAttr("size");
$(".table_grid").attr("class", "table table-striped");
$("img[alt=\'', $txt['new'], '\'], img.new_posts").replaceWith("<span class=\'label label-warning\'>', $txt['new'], '</span>");
$("#profile_success").removeAttr("id").removeClass("windowbg").addClass("alert alert-success");
$("#profile_error").removeAttr("id").removeClass("windowbg").addClass("alert alert-danger");
});
</script>


Replace with:
<script type="text/javascript">
$(document).ready(function(){
var previousScroll = 0, headerOrgOffset = $("nav").height();
$(window).scroll(function () {
    var currentScroll = $(this).scrollTop();
    if (currentScroll > headerOrgOffset) {
        if (currentScroll > previousScroll) {
            $("nav").fadeOut();
        } else {
            $("nav").fadeIn();
        }
    } else {
            $("nav").fadeIn();
    }
    previousScroll = currentScroll;
});
$(window).scroll(function() {
    if ($(this).scrollTop() >= 50) {        // If page is scrolled more than 50px
        $("#return-to-top").fadeIn(200);    // Fade in the arrow
    } else {
        $("#return-to-top").fadeOut(200);   // Else fade out the arrow
    }
});
$("#return-to-top").click(function() {      // When arrow is clicked
    $("body,html").animate({
        scrollTop : 0                       // Scroll to top of body
    }, 500);
});
$("input[type=button]").attr("class", "btn btn-default btn-sm");
$(".button_submit").attr("class", "btn btn-primary btn-sm");
$("#advanced_search input[type=\'text\'], #search_term_input input[type=\'text\']").removeAttr("size");
$(".table_grid").attr("class", "table table-striped");
$("img[alt=\'', $txt['new'], '\'], img.new_posts").replaceWith("<span class=\'label label-warning\'>', $txt['new'], '</span>");
$("#profile_success").removeAttr("id").removeClass("windowbg").addClass("alert alert-success");
$("#profile_error").removeAttr("id").removeClass("windowbg").addClass("alert alert-danger");
});
</script>


Search:
<footer>

Replace with:
<a href="javascript:" id="return-to-top"><i class="icon-chevron-up"></i></a>
<footer>


Reseller.css
Add to the end:
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

You know what if there exist a like button on smf i would have definitely pressed it  ;D
BTW can i change black color of go to top
Title: Re: Reseller
Post by: Daniiel on August 01, 2014, 12:05:34 AM
Quote from: r4ll on July 31, 2014, 11:59:43 PM
You know what if there exist a like button on smf i would have definitely pressed it  ;D
BTW can i change black color of go to top
Yes you can. You only have to go to Reseller.css and change the following:
    background: rgba(0, 0, 0, 0.7);

And the color of hover:
    background: rgba(0, 0, 0, 0.9);

You can visit this page to get your rgba color: http://hex2rgba.devoth.com/ (http://hex2rgba.devoth.com/)

Regards!  :D
Title: Re: Reseller
Post by: -Captain Ghost- on August 01, 2014, 12:09:58 AM
Quote from: Daniiel on August 01, 2014, 12:05:34 AM
Quote from: r4ll on July 31, 2014, 11:59:43 PM
You know what if there exist a like button on smf i would have definitely pressed it  ;D
BTW can i change black color of go to top
Yes you can. You only have to go to Reseller.css and change the following:
    background: rgba(0, 0, 0, 0.7);

And the color of hover:
    background: rgba(0, 0, 0, 0.9);

You can visit this page to get your rgba color: http://hex2rgba.devoth.com/ (http://hex2rgba.devoth.com/)

Regards!  :D
Thanks again  :)
Title: Re: Reseller
Post by: -Captain Ghost- on August 01, 2014, 02:14:15 AM
There is a problem that theme is not resizing according to mobile screen size and one more problem that there is a Spanish text when you click login below password box.

My phone Lumia 520

See screen shots.

Thanks

Edit:
I had observed the code which is causing problem
It is a code in portal.css of simpleportal
Here it is body
{
min-width: 750px;
}


i had modified it to body
{
min-width: device-width;
}



Title: Re: Reseller
Post by: Daniiel on August 02, 2014, 04:01:27 PM
I added the PSD of the logo (the file includes the font).
Title: Re: Reseller
Post by: Kornak on August 03, 2014, 01:45:06 AM
I apologize for my English, I used an online translator. The subject is simply smart!
But unfortunately I noticed a few bugs in SimplePortal 2.3.5.  Watch a screenshot

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg-fotki.yandex.ru%2Fget%2F6834%2F22695793.b%2F0_b89fb_1c7811a1_L.png&hash=32830532a7750b26ba7a16efaf93cd225f1057b1)

At a forum of these bugs isn't present.

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg-fotki.yandex.ru%2Fget%2F6736%2F22695793.b%2F0_b89f9_532f4db0_L.png&hash=7ccda5199076a57b80dd0544114a81c6c006175e)

How I can correct it?

Also prompt as to make it less
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg-fotki.yandex.ru%2Fget%2F6801%2F22695793.b%2F0_b89fa_14753981_M.png&hash=f8fca59b3e90d1012ca11f1a65b0246c8dbdf27b)

Title: Re: Reseller
Post by: live627 on August 03, 2014, 02:23:44 AM
Notice: Undefined index: sub_buttons in /home/public_html/Themes/Reseller/index.template.php on line 398

Many mods do not define sub_buttons.
Title: Re: Reseller
Post by: Neekiinh0 on August 03, 2014, 09:34:35 AM
Quote from: Kornak on August 03, 2014, 01:45:06 AM
I apologize for my English, I used an online translator. The subject is simply smart!
But unfortunately I noticed a few bugs in SimplePortal 2.3.5.  Watch a screenshot

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg-fotki.yandex.ru%2Fget%2F6834%2F22695793.b%2F0_b89fb_1c7811a1_L.png&hash=32830532a7750b26ba7a16efaf93cd225f1057b1)

At a forum of these bugs isn't present.

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg-fotki.yandex.ru%2Fget%2F6736%2F22695793.b%2F0_b89f9_532f4db0_L.png&hash=7ccda5199076a57b80dd0544114a81c6c006175e)

How I can correct it?

Also prompt as to make it less
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg-fotki.yandex.ru%2Fget%2F6801%2F22695793.b%2F0_b89fa_14753981_M.png&hash=f8fca59b3e90d1012ca11f1a65b0246c8dbdf27b)



Url..
Title: Re: Reseller
Post by: Kornak on August 03, 2014, 11:17:59 AM
Quote from: Neekiinh0 on August 03, 2014, 09:34:35 AM
Url..
http://proscooters.ru/
Title: Re: Reseller
Post by: Neekiinh0 on August 03, 2014, 05:00:47 PM
In Portal.template.php

search:

<a class="sp_float_right" style="padding-top: 7px;" href="javascript:void(0);" onclick="sp_collapseBlock(\'', $block['id'], '\')"><img id="sp_collapse_', $block['id'], '" src="', $settings['images_url'], $block['collapsed'] ? '/expand.gif' : '/collapse.gif', '" alt="*" /></a>';

Replace with:

<a class="sp_float_right" href="javascript:void(0);" onclick="sp_collapseBlock(\'', $block['id'], '\')"><img id="sp_collapse_', $block['id'], '" src="', $settings['images_url'], $block['collapsed'] ? '/expand.gif' : '/collapse.gif', '" alt="*" /></a>';

Title: Re: Reseller
Post by: Kornak on August 03, 2014, 09:10:04 PM
Quote from: Neekiinh0 on August 03, 2014, 05:00:47 PM
In Portal.template.php

search:

<a class="sp_float_right" style="padding-top: 7px;" href="javascript:void(0);" onclick="sp_collapseBlock(\'', $block['id'], '\')"><img id="sp_collapse_', $block['id'], '" src="', $settings['images_url'], $block['collapsed'] ? '/expand.gif' : '/collapse.gif', '" alt="*" /></a>';

Replace with:

<a class="sp_float_right" href="javascript:void(0);" onclick="sp_collapseBlock(\'', $block['id'], '\')"><img id="sp_collapse_', $block['id'], '" src="', $settings['images_url'], $block['collapsed'] ? '/expand.gif' : '/collapse.gif', '" alt="*" /></a>';

thank you very much 1 problem left, it pleases
but as it is possible to add a gap in a place specified by an arrow.

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg-fotki.yandex.ru%2Fget%2F6822%2F22695793.b%2F0_b8a70_f8a5e7f0_L.png&hash=bed0b3a337ef38e255d49ae2eda2430f077d7f03)

And how to increase template width

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg-fotki.yandex.ru%2Fget%2F6801%2F22695793.b%2F0_b89fa_14753981_M.png&hash=f8fca59b3e90d1012ca11f1a65b0246c8dbdf27b)
Title: Re: Reseller
Post by: Neekiinh0 on August 03, 2014, 09:30:13 PM
It is the shoutbox? capture larger screen and user demo Please
Title: Re: Reseller
Post by: Kornak on August 03, 2014, 10:23:32 PM
Quote from: Neekiinh0 on August 03, 2014, 09:30:13 PM
It is the shoutbox? capture larger screen and user demo Please
yes is it shoutbox

it looks so

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg-fotki.yandex.ru%2Fget%2F6824%2F22695793.b%2F0_b8a71_394b5af0_L.png&hash=79e766d0d5346ff0b178ab2685c8f04cec2abfd0)

want to be

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg-fotki.yandex.ru%2Fget%2F6734%2F22695793.b%2F0_b8a72_270d528d_L.png&hash=7236d065a403abdc112f70a54dfc51bd54e1eea6)

demo
http://proscooters.ru/
login - Tester
pass - 123456

Quote from: Kornak on August 03, 2014, 09:10:04 PM
And how to increase template width

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg-fotki.yandex.ru%2Fget%2F6801%2F22695793.b%2F0_b89fa_14753981_M.png&hash=f8fca59b3e90d1012ca11f1a65b0246c8dbdf27b)

I find it!

in bootstrap.css

Find
{.container{width:1170px}}

Replace with:
{.container{width:95%}}
Title: Re: Reseller
Post by: Daniiel on August 03, 2014, 10:31:18 PM
Reseller.css (Themes/Reseller/css)
Add to the end:
.shoutbox_input input[type="submit"]
{
     margin: -5px 10px 0;
}
#sp_center
{
     padding: 0 5px;
}




For the full width, you can also replace all the:
<div class="container">
For:
<div class="container-fluid">
Title: Re: Reseller
Post by: Kornak on August 03, 2014, 11:04:04 PM
Quote from: Daniiel on August 03, 2014, 10:31:18 PM
Reseller.css (Themes/Reseller/css)
Add to the end:
.shoutbox_input input[type="submit"]
{
     margin: -5px 10px 0;
}
#sp_center
{
     padding: 0 5px;
}




For the full width, you can also replace all the:
<div class="container">
For:
<div class="container-fluid">

thank you very much! Now all looks very much cool! It is the most cool template from those that I saw!
Title: Re: Reseller
Post by: Mstcool on August 06, 2014, 05:26:53 PM
Amazing Theme. One of the best themes I have seen out there. I can see myself using this for a long time.


However, this theme (or its just me) doesn't work properly with the Member Groups Icon mod: http://custom.simplemachines.org/mods/index.php?mod=2970

I uploaded the ranks to the right file and they show up in the membergroup settings in the admin panel, but the crowns don't show up on post. The mod worked properly with all other themes so the reason I posted it here is because I think its a theme problem because they show up in settings but not in post. So, what could be the problem? :p




Nvm, found the actual problem. It is not the crown but....its the online button that doesn't show up. The offline one does but online doesn't.
Title: Re: Reseller
Post by: -Captain Ghost- on August 07, 2014, 05:51:26 AM
Hello,
Can you help me in adding something like this
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi58.tinypic.com%2F3142d60.png&hash=c09f81985cbf72563ecdb650d7a301bbf4012297)

In place of this check box
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi57.tinypic.com%2F9zsymr.png&hash=da8e0b6f9f79876e4ed6d0b58c7f485f6bf69e46)

Thanks

Title: Re: Reseller
Post by: oljo on August 07, 2014, 08:19:14 AM
I am totaly new to smf and i am using this theme because its the best :) but i am wondering how can i remove the reseller logo? and put in my own?
Title: Re: Reseller
Post by: gonza28 on August 07, 2014, 10:01:15 AM
Hola.
Muchas gracias por su trabajo. Hermoso temas.
Quisiera otificarle que hay algun problema con el mod: Like Posts.
Estoy probando su tema en mi servidor local. No hay compatibilidad co este mod mensionado http://custom.simplemachines.org/mods/index.php?mod=3708



Usted es lo más!! muchas gracias por su gran trabajo. ;)

You English translated by google

Hi there.
Thank you very much for your work. Beautiful Themes.
Otificarle I would suspect a problem with the mod :. as messages
I'm trying to do the theme on my local server. No hay co COMPATIBILITY This mod dimensioned http://custom.simplemachines.org/mods/index.php?mod=3708

Thank you very much for your work. excellent

No image: online user

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2Fk8AYoXM.jpg&hash=c683d1b21f33e736b4d6ec727d0924de22b9062c)

You can enable the button mod: Like Posts at the bottom of the posts as seen in the original theme smf? examples:

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FJqK2Jga.jpg&hash=3123ca783ffb73279c6915194dab3a201e4fd36f)

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FMmr9J3r.jpg&hash=0ed3bad1c2765a652f1c834802e4b4244620c7ae)
Title: Re: Reseller
Post by: Shades. on August 08, 2014, 11:30:17 AM
When logging in, underneath it has a check box that says"Recuerdame ". How do I change that to english "Remember me"?
Title: Re: Reseller
Post by: -Captain Ghost- on August 08, 2014, 12:05:19 PM
Quote from: Shades. on August 08, 2014, 11:30:17 AM
When logging in, underneath it has a check box that says"Recuerdame ". How do I change that to english "Remember me"?
Just search Recuerdame in index.template.php and replace it to Remember Me.

Thanks
Title: Re: Reseller
Post by: Daniiel on August 08, 2014, 12:49:27 PM
For people who have problems with the images online and offline, I will leave images attached to replace them. Root: Themes/Reseller/images



Quote from: oljo on August 07, 2014, 08:19:14 AM
I am totaly new to smf and i am using this theme because its the best :) but i am wondering how can i remove the reseller logo? and put in my own?

You have to go to Admin > Configuration > Current theme and you put the url of the logo in "Logo image URL:".
You can also replace the logo.png image located in Themes / Reseller / images




Theme updated: Now has no problem with the images and arranged it from "Recuerdame".

PD: -Captain Ghost- If you give me a little time, I'll help you with what you want to do with the login.
PD2: Gonza28 I dont understand what you want to do about the mod, can you explain better?
Title: Re: Reseller
Post by: -Captain Ghost- on August 08, 2014, 01:05:22 PM
QuoteIf you give me a little time, I'll help you with what you want to do with the login
Time is yours take your time  ;D

Thanks
Title: Re: Reseller
Post by: Shades. on August 08, 2014, 01:33:38 PM
Quote from: -Captain Ghost- on August 08, 2014, 12:05:19 PM
Quote from: Shades. on August 08, 2014, 11:30:17 AM
When logging in, underneath it has a check box that says"Recuerdame ". How do I change that to english "Remember me"?
Just search Recuerdame in index.template.php and replace it to Remember Me.

Thanks
I was looking in the language files...lol! All fixed now, thanks! 8)
Title: Re: Reseller
Post by: gonza28 on August 08, 2014, 09:21:16 PM
Quote from: Daniiel on August 08, 2014, 12:49:27 PM
For people who have problems with the images online and offline, I will leave images attached to replace them. Root: Themes/Reseller/images



Quote from: oljo on August 07, 2014, 08:19:14 AM
I am totaly new to smf and i am using this theme because its the best :) but i am wondering how can i remove the reseller logo? and put in my own?

You have to go to Admin > Configuration > Current theme and you put the url of the logo in "Logo image URL:".
You can also replace the logo.png image located in Themes / Reseller / images




Theme updated: Now has no problem with the images and arranged it from "Recuerdame".

PD: -Captain Ghost- If you give me a little time, I'll help you with what you want to do with the login.
PD2: Gonza28 I dont understand what you want to do about the mod, can you explain better?

Do not worry for now. It is difficult to understand the translation. I'm sorry. I will ask a friend who can translate me correctly for you.

I would ask you to tell me where to touch to vary the colors of these 3 sections identified in the image. I've tried the reseller.css but does not reflect the changes.
Their colors are great. Only I would like to customize a little.
A hug.
PD. Nexus 5 shows great.

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FrNQawNb.jpg&hash=96aecdb7cd089d44d5374993a1f6bb6a90bbee5b)
Title: Re: Reseller
Post by: Daniiel on August 08, 2014, 10:04:12 PM
Quote from: gonza28 on August 08, 2014, 09:21:16 PM
Do not worry for now. It is difficult to understand the translation. I'm sorry. I will ask a friend who can translate me correctly for you.

I would ask you to tell me where to touch to vary the colors of these 3 sections identified in the image. I've tried the reseller.css but does not reflect the changes.
Their colors are great. Only I would like to customize a little.
A hug.
PD. Nexus 5 shows great.

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FrNQawNb.jpg&hash=96aecdb7cd089d44d5374993a1f6bb6a90bbee5b)

Reseller.css
You search for "header" and you will find this:
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
}


You have to change the background and the box shadow (this because it brings a kind of border bottom).

Index.css
Search for:
div.cat_bar
{
background: #34495e;
padding-left: 9px;
height: 35px;
overflow: hidden;
margin-bottom: 1px;
}

h4.catbg, h4.catbg2 , h3.catbg , h3.catbg2 , .table_list tbody.header td.catbg
{
background: #34495e;
padding-right: 9px;
}


Change the background for which you want.
Title: Re: Reseller
Post by: gonza28 on August 08, 2014, 11:47:35 PM
A treat. I managed to change the colors. Thank you very much.
Excellent template. Keep it !!

God bless you. ;)

EDIT.
I would like to see more of a bother.
1-You can remove the shadow that allows you to see the social icons?

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FMJRtL04.jpg&hash=1d74f88000c8ab1076ea5dfff7bc8edbf021e998)

In the future, you can put the options of adding social icons here?
IMG

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2Fg4ZwPpT.jpg&hash=79f7baea63901bb4a4b186458c7b529390d4a57d)
Title: Re: Reseller
Post by: Kornak on August 09, 2014, 05:12:07 AM
I find new bug ((

That happens if i push the button in topic with vote.

How repair it?
Title: Re: Reseller
Post by: Diego Andrés on August 09, 2014, 12:32:44 PM
Quote from: Kornak on August 09, 2014, 05:12:07 AM
I find new bug ((

That happens if i push the button in topic with vote.

How repair it?

index.css search
div#pollmoderation

And remove the
overflow: auto;
Title: Re: Reseller
Post by: Kornak on August 09, 2014, 04:05:05 PM
Quote from: Diego Andrés on August 09, 2014, 12:32:44 PM
Quote from: Kornak on August 09, 2014, 05:12:07 AM
I find new bug ((

That happens if i push the button in topic with vote.

How repair it?

index.css search
div#pollmoderation

And remove the
overflow: auto;

Worked, Thx!
Title: Re: Reseller
Post by: ultrazonex2 on August 09, 2014, 04:53:18 PM
Excellent template. I appreciate the good works. Please how do I make the menu buttons appear on mobile view navbar. I would rather prefer that my users see their login, register, logout button instead of the toggle navigation bar I see there. This appear mostly on operamini view but on blackberry view, the menu options are tucked away under a bar. Please I would like all the menu options openly expanded.
Title: Re: Reseller
Post by: Mstcool on August 09, 2014, 07:53:34 PM
Quote from: Daniiel on August 08, 2014, 12:49:27 PM
For people who have problems with the images online and offline, I will leave images attached to replace them. Root: Themes/Reseller/images

Offline image always worked for me, online didn't. I changed the online image and it still doesn't show up. What to do?
Title: Re: Reseller
Post by: ultrazonex2 on August 10, 2014, 08:42:16 AM
How do I have these buttons displayed on my forum under the logo like in smftricks.com?
 Home
 Search
 Team
 Downloads
 Login
 Register

Also note that a 'logout button' is shown too when you are logged in. Note everyone will know that some button exist under toggle navigation.

Thanks.
Title: Re: Reseller
Post by: gonza28 on August 10, 2014, 04:17:02 PM
bug:
Buttons facebook integration sees not login and G +

http://custom.simplemachines.org/mods/index.php?mod=2322
Title: Re: Reseller
Post by: Neekiinh0 on August 10, 2014, 09:05:04 PM
The bug theme is looking at in terms of code and design.
Not compatible with mods

PD: Google translate.
Title: Re: Reseller
Post by: NanoSector on August 12, 2014, 03:10:09 PM
Thanks for this theme, I love it! :)
Title: Re: Reseller
Post by: Matias- on August 15, 2014, 04:30:58 PM
Gente tengo este problema... Se descuadra cuando voy a editar un tema.
Saludos.


People have this problem ... is out of position when I go to edit a theme.
Greetings.
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FeEhfMwP.png&hash=fd9cb44c5c72d6adedbc9288bb3dfa642c812214)
Title: Re: Reseller (Simple Portal - no space between columns)
Post by: OCJ on August 18, 2014, 07:13:37 AM
Not sure if you are interested in this as it is another mod problem, though the most popular SMF mod - Simple Portal.

Wrap theme has some space/padding between the center and left or right columns but not the Reseller theme?
Doesn't look good. As this theme is becoming popular maybe it would be worth fixing.

This is a temporary board but you can see the difference in themes.

hxxp://ichikawa-eikaiwa.com/smf/

Screenshots also attached.



Title: Re: Reseller
Post by: Daniiel on August 19, 2014, 03:20:34 PM
Quote from: igirisjin on August 18, 2014, 07:13:37 AM
Not sure if you are interested in this as it is another mod problem, though the most popular SMF mod - Simple Portal.

Wrap theme has some space/padding between the center and left or right columns but not the Reseller theme?
Doesn't look good. As this theme is becoming popular maybe it would be worth fixing.

This is a temporary board but you can see the difference in themes.

hxxp://ichikawa-eikaiwa.com/smf/

Screenshots also attached.

If you watch the comments above, you can find the solution.

Quote from: Matias- on August 15, 2014, 04:30:58 PM
Gente tengo este problema... Se descuadra cuando voy a editar un tema.
Saludos.


People have this problem ... is out of position when I go to edit a theme.
Greetings.
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FeEhfMwP.png&hash=fd9cb44c5c72d6adedbc9288bb3dfa642c812214)

Index.template.php
Search:
// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree($force_show = false)
{
global $context, $settings, $options, $shown_linktree;

// If linktree is empty, just return - also allow an override.
if (empty($context['linktree']) || (!empty($context['dont_default_linktree']) && !$force_show))
return;

echo '
<div class="navigate_section">
<div class="container">
<div class="row">
<ol class="breadcrumb">';

// Each tree item has a URL and name. Some may have extra_before and extra_after.
foreach ($context['linktree'] as $link_num => $tree)
{
echo '
<li', ($link_num == count($context['linktree']) - 1) ? ' class="active"' : '', '>';

// Show something before the link?
if (isset($tree['extra_before']))
echo $tree['extra_before'];

// Show the link, including a URL if it should have one.
echo $settings['linktree_link'] && isset($tree['url']) ? '
<a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span></a>' : '<span>' . $tree['name'] . '</span>';

// Show something after the link...?
if (isset($tree['extra_after']))
echo $tree['extra_after'];

echo '
</li>';
}
echo '
</ol>
</div>
</div>
</div>';

$shown_linktree = true;
}

Replace for:
// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree($force_show = false)
{
global $context, $settings, $options, $shown_linktree;

// If linktree is empty, just return - also allow an override.
if (empty($context['linktree']) || (!empty($context['dont_default_linktree']) && !$force_show))
return;

echo '
<div class="navigate_section">
<div class="container">
<div class="row">
<ol class="breadcrumb">';

// Each tree item has a URL and name. Some may have extra_before and extra_after.
foreach ($context['linktree'] as $link_num => $tree)
{
echo '
<li', ($link_num == count($context['linktree']) - 1) ? ' class="active"' : '', '>';

// Show the link, including a URL if it should have one.
echo $settings['linktree_link'] && isset($tree['url']) ? '
<a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span></a>' : '<span>' . $tree['name'] . '</span>';

echo '
</li>';
}
echo '
</ol>
</div>
</div>
</div>';

$shown_linktree = true;
}

Title: Re: Reseller
Post by: OCJ on August 20, 2014, 02:10:11 AM
That code change to Reseller index.template.php did not fix the problem. I cleared smf cache, browser cache etc but no change - still no space between side columns and center column.
See screenshots - Curve and Wrap themes are ok, but not Reseller.




Quote
// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree($force_show = false)
{
   global $context, $settings, $options, $shown_linktree;

   // If linktree is empty, just return - also allow an override.
   if (empty($context['linktree']) || (!empty($context['dont_default_linktree']) && !$force_show))
      return;

   echo '
   <div class="navigate_section">
      <div class="container">
         <div class="row">
            <ol class="breadcrumb">';

         // Each tree item has a URL and name. Some may have extra_before and extra_after.
         foreach ($context['linktree'] as $link_num => $tree)
         {
            echo '
               <li', ($link_num == count($context['linktree']) - 1) ? ' class="active"' : '', '>';

            // Show the link, including a URL if it should have one.
            echo $settings['linktree_link'] && isset($tree['url']) ? '
                  <a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span></a>' : '<span>' . $tree['name'] . '</span>';

            echo '
               </li>';
         }
         echo '
            </ol>
         </div>
      </div>
   </div>';

   $shown_linktree = true;
}


Title: Re: Reseller
Post by: Daniiel on August 20, 2014, 03:37:38 AM
Jajajaja, that code it's not for fix that problem, I meant that the solution is in the previous replies, whatever, here you go:

Portal.template.php
Search:
<a class="sp_float_right" style="padding-top: 7px;" href="javascript:void(0);" onclick="sp_collapseBlock(\'', $block['id'], '\')"><img id="sp_collapse_', $block['id'], '" src="', $settings['images_url'], $block['collapsed'] ? '/expand.gif' : '/collapse.gif', '" alt="*" /></a>';
Replace with:
<a class="sp_float_right" href="javascript:void(0);" onclick="sp_collapseBlock(\'', $block['id'], '\')"><img id="sp_collapse_', $block['id'], '" src="', $settings['images_url'], $block['collapsed'] ? '/expand.gif' : '/collapse.gif', '" alt="*" /></a>';

Reseller.css
Add to the end:

#sp_center
{
     padding: 0 5px;
}
Title: Re: Reseller
Post by: OCJ on August 20, 2014, 06:29:54 AM
Just changing the reseller css padding seems to have done it - thanks.
Title: Re: Reseller
Post by: Daniiel on August 20, 2014, 07:24:18 PM
Quote from: -Captain Ghost- on August 07, 2014, 05:51:26 AM
Hello,
Can you help me in adding something like this
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi58.tinypic.com%2F3142d60.png&hash=c09f81985cbf72563ecdb650d7a301bbf4012297)

In place of this check box
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi57.tinypic.com%2F9zsymr.png&hash=da8e0b6f9f79876e4ed6d0b58c7f485f6bf69e46)

Thanks
Don't think I you forget, here you go:

Index.template.php
Search:
<div class="checkbox">
<label>
<input name="cookielength" type="checkbox" value="-1" /> Recuerdame
</label>
</div>

Replace with:
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" value="-1" id="myonoffswitch" checked>
<label class="onoffswitch-label" for="myonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>


reseller.css
Add to the end:
.onoffswitch {
    position: relative; width: 90px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #999999; border-radius: 0px;
}

.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    -moz-transition: margin 0.3s ease-in 0s; -webkit-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s; transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 26px;
    font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.onoffswitch-inner:before {
    content: "YES";
    padding-left: 10px;
    background-color: #3498DB; color: #FFFFFF;
}

.onoffswitch-inner:after {
    content: "NO";
    padding-right: 10px;
    background-color: #DB4A67; color: #FFFFFF;
    text-align: right;
}

.onoffswitch-switch {
    display: block; width: 20px; margin: 0px;
    background: #34495E;
    position: absolute; top: 0; bottom: 0; right: 70px;
    -moz-transition: all 0.3s ease-in 0s; -webkit-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}


Preview

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2Fsh76UAB.png&hash=5b4a9feff25f5ebe006c0055e8eaf7fcbb0ad816) (https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FYCbNEF4.png&hash=1238133e8796ff074ebcc27b5d9ecf4801bf3bed)

Greetings!
Title: Re: Reseller
Post by: -Captain Ghost- on August 20, 2014, 08:43:32 PM
Quote from: Daniiel on August 20, 2014, 07:24:18 PM
Quote from: -Captain Ghost- on August 07, 2014, 05:51:26 AM
Hello,
Can you help me in adding something like this
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi58.tinypic.com%2F3142d60.png&hash=c09f81985cbf72563ecdb650d7a301bbf4012297)

In place of this check box
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi57.tinypic.com%2F9zsymr.png&hash=da8e0b6f9f79876e4ed6d0b58c7f485f6bf69e46)

Thanks
Don't think I you forget, here you go:

Index.template.php
Search:
<div class="checkbox">
<label>
<input name="cookielength" type="checkbox" value="-1" /> Recuerdame
</label>
</div>

Replace with:
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" value="-1" id="myonoffswitch" checked>
<label class="onoffswitch-label" for="myonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>


reseller.css
Add to the end:
.onoffswitch {
    position: relative; width: 90px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #999999; border-radius: 0px;
}

.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    -moz-transition: margin 0.3s ease-in 0s; -webkit-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s; transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 26px;
    font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.onoffswitch-inner:before {
    content: "YES";
    padding-left: 10px;
    background-color: #3498DB; color: #FFFFFF;
}

.onoffswitch-inner:after {
    content: "NO";
    padding-right: 10px;
    background-color: #DB4A67; color: #FFFFFF;
    text-align: right;
}

.onoffswitch-switch {
    display: block; width: 20px; margin: 0px;
    background: #34495E;
    position: absolute; top: 0; bottom: 0; right: 70px;
    -moz-transition: all 0.3s ease-in 0s; -webkit-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}


Preview

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2Fsh76UAB.png&hash=5b4a9feff25f5ebe006c0055e8eaf7fcbb0ad816) (https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FYCbNEF4.png&hash=1238133e8796ff074ebcc27b5d9ecf4801bf3bed)

Greetings!
Thanks alot it worked.
Title: Re: Reseller
Post by: ChezTweedy on August 21, 2014, 05:20:55 PM
Hello, I am new on SMF and need help with uploading videos.

I have a few videos on flowplayer.org and need put a video in my post, but when I doing it, I can see just a link to the video, but not the player.

Can you please tell me, where and how, I have put two codes <head> , <body>

Title: Re: Reseller
Post by: Mstcool on August 21, 2014, 05:29:55 PM
Why would you post that in a thread for theme support?

But to answer your question

You can try using BBC as well. What is the code that they provided to you?
Title: Re: Reseller
Post by: ChezTweedy on August 23, 2014, 09:45:49 AM
They provide to me these codes

<head>

<link rel="stylesheet" href="//releases.flowplayer.org/5.4.6/skin/minimalist.css" >
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//releases.flowplayer.org/5.4.6/flowplayer.min.js"></script>


<body>

<div class="flowplayer" data-rtmp="rtmp://rtmp.flowplayer.org/cfx/st/" data-ratio="0.5625">
  <video>
    <source type="video/webm" src="http://drive.flowplayer.org/193586/27095-CosyBoxFashionOneTVwithRollingStones2012CannesFIFYouTube720p.webm">
    <source type="video/mp4" src="http://drive.flowplayer.org/193586/27095-CosyBoxFashionOneTVwithRollingStones2012CannesFIFYouTube720p.mp4">
    <source type="video/flash" src="mp4:193586/27095-CosyBoxFashionOneTVwithRollingStones2012CannesFIFYouTube720p.mp4">
  </video>
</div>
Title: Re: Reseller
Post by: exabyte on August 23, 2014, 11:15:58 AM
Quote from: Daniiel on August 03, 2014, 10:31:18 PM

hi daniiel,
First off, I want to congratulate(fuk i hope i spelled that right lmao) on a great theme. one of the best I've seen on any forum. I'm using it on my forum rn, and I was wondering how to have the avatar and user info next to the post, like it is on here.
Title: Re: Reseller
Post by: Jade Elizabeth on August 23, 2014, 11:36:45 PM
THANK YOU so much for this theme, it is absolutely fantastic!!

I just have one request. I don't like having to click 100 times for replying to posts. Can the actions button by posts have a quote button beside it please? I think that would be easier for people to reply to posts with :).

Also in admin, packages, some of the text for other themes are white on white bars. And the little clicky things to get info on errors on install are not there so I can't find where the script breaks....EDIT: okay they are if I expand my screen a bit but they're scaling....they don't need to scale :/.
Title: Re: Reseller
Post by: Daniiel on August 25, 2014, 04:42:47 PM
Quote from: exabyte on August 23, 2014, 11:15:58 AM
hi daniiel,
First off, I want to congratulate(fuk i hope i spelled that right lmao) on a great theme. one of the best I've seen on any forum. I'm using it on my forum rn, and I was wondering how to have the avatar and user info next to the post, like it is on here.
If you want to display as the default theme, you just have to grab the file and replace Display.template.php which brings the theme reseller.

Quote from: Jade Elizabeth on August 23, 2014, 11:36:45 PM
THANK YOU so much for this theme, it is absolutely fantastic!!

I just have one request. I don't like having to click 100 times for replying to posts. Can the actions button by posts have a quote button beside it please? I think that would be easier for people to reply to posts with :).

Also in admin, packages, some of the text for other themes are white on white bars. And the little clicky things to get info on errors on install are not there so I can't find where the script breaks....EDIT: okay they are if I expand my screen a bit but they're scaling....they don't need to scale :/.
Index.template.php (Themes/Reseller)
Search:
// Generate a strip of buttons.
function template_button_strip($button_strip, $direction = 'top', $strip_options = array())
{
global $settings, $context, $txt, $scripturl;

if (!is_array($strip_options))
$strip_options = array();

// List the buttons in reverse order for RTL languages.
if ($context['right_to_left'])
$button_strip = array_reverse($button_strip, true);

// Create the buttons...
$buttons = array();
foreach ($button_strip as $key => $value)
{
if (!isset($value['test']) || !empty($context[$value['test']]))
$buttons[] = '
<li><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span></a></li>';
}

// No buttons? No button strip either.
if (empty($buttons))
return;

// Make the last one, as easy as possible.
$buttons[count($buttons) - 1] = str_replace('<span>', '<span class="last">', $buttons[count($buttons) - 1]);

echo '
<div class="btn-group', !empty($direction) ? ' navbar-' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '>
<button type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown">
    Actions <span class="caret"></span>
  </button>
<ul class="dropdown-menu" role="menu">',
implode('', $buttons), '
</ul>
</div>';
}

Replace for:
// Generate a strip of buttons.
function template_button_strip($button_strip, $direction = 'top', $strip_options = array())
{
global $settings, $context, $txt, $scripturl;

if (!is_array($strip_options))
$strip_options = array();

// List the buttons in reverse order for RTL languages.
if ($context['right_to_left'])
$button_strip = array_reverse($button_strip, true);

// Create the buttons...
$buttons = array();
foreach ($button_strip as $key => $value)
{
if (!isset($value['test']) || !empty($context[$value['test']]))
$buttons[] = '
<li><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span></a></li>';
}

// No buttons? No button strip either.
if (empty($buttons))
return;

// Make the last one, as easy as possible.
$buttons[count($buttons) - 1] = str_replace('<span>', '<span class="last">', $buttons[count($buttons) - 1]);

echo '
<div class="buttonlist', !empty($direction) ? ' float' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '>
<ul>',
implode('', $buttons), '
</ul>
</div>';
}

Display.template.php (Themes/Reseller)
Search:
<div class="postarea">';

// If this is the first post, (#0) just say when it was posted - otherwise give the reply #.
if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
<div class="btn-group navbar-right">
<button type="button" class="btn btn-primary dropdown-toggle btn-sm" data-toggle="dropdown">Actions <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu"">';

// Maybe we can approve it, maybe we should?
if ($message['can_approve'])
echo '
<li class="approve_button"><a href="', $scripturl, '?action=moderate;area=postmod;sa=approve;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['approve'], '</a></li>';

// Can they reply? Have they turned on quick reply?
if ($context['can_quote'] && !empty($options['display_quick_reply']))
echo '
<li class="quote_button"><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '" onclick="return oQuickReply.quote(', $message['id'], ');">', $txt['quote'], '</a></li>';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_quote'])
echo '
<li class="quote_button"><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '">', $txt['quote'], '</a></li>';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
<li class="modify_button"><a href="', $scripturl, '?action=post;msg=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], '">', $txt['modify'], '</a></li>';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
<li class="remove_button"><a href="', $scripturl, '?action=deletemsg;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '" onclick="return confirm(\'', $txt['remove_message'], '?\');">', $txt['remove'], '</a></li>';

// What about splitting it off the rest of the topic?
if ($context['can_split'] && !empty($context['real_num_replies']))
echo '
<li class="split_button"><a href="', $scripturl, '?action=splittopics;topic=', $context['current_topic'], '.0;at=', $message['id'], '">', $txt['split'], '</a></li>';

// Can we restore topics?
if ($context['can_restore_msg'])
echo '
<li class="restore_button"><a href="', $scripturl, '?action=restoretopic;msgs=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['restore_message'], '</a></li>';

if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
</ul>
</div>
<ul class="reset floatright" style="margin: 5px 15px 0 7px;">';

// Show a checkbox for quick moderation?
if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $message['can_remove'])
echo '
<li class="inline_mod_check" style="display: none;" id="in_topic_mod_check_', $message['id'], '"></li>';

echo'
</ul>
<div class="keyinfo">
<div class="messageicon">
<img src="', $message['icon_url'] . '" alt=""', $message['can_modify'] ? ' id="msg_icon_' . $message['id'] . '"' : '', ' />
</div>
<h5 id="subject_', $message['id'], '">
<a href="', $message['href'], '" rel="nofollow">', $message['subject'], '</a>
</h5>
<div class="smalltext">&#171; <strong>', !empty($message['counter']) ? $txt['reply_noun'] . ' #' . $message['counter'] : '', ' ', $txt['on'], ':</strong> ', $message['time'], ' &#187;</div>
<div id="msg_', $message['id'], '_quick_mod"></div>
</div>';

Replace for:
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="', $message['icon_url'] . '" alt=""', $message['can_modify'] ? ' id="msg_icon_' . $message['id'] . '"' : '', ' />
</div>
<h5 id="subject_', $message['id'], '">
<a href="', $message['href'], '" rel="nofollow">', $message['subject'], '</a>
</h5>
<div class="smalltext">&#171; <strong>', !empty($message['counter']) ? $txt['reply_noun'] . ' #' . $message['counter'] : '', ' ', $txt['on'], ':</strong> ', $message['time'], ' &#187;</div>
<div id="msg_', $message['id'], '_quick_mod"></div>
</div>';

// If this is the first post, (#0) just say when it was posted - otherwise give the reply #.
if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
<ul class="reset smalltext quickbuttons">';

// Maybe we can approve it, maybe we should?
if ($message['can_approve'])
echo '
<li class="approve_button"><a href="', $scripturl, '?action=moderate;area=postmod;sa=approve;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['approve'], '</a></li>';

// Can they reply? Have they turned on quick reply?
if ($context['can_quote'] && !empty($options['display_quick_reply']))
echo '
<li class="quote_button"><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '" onclick="return oQuickReply.quote(', $message['id'], ');">', $txt['quote'], '</a></li>';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_quote'])
echo '
<li class="quote_button"><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '">', $txt['quote'], '</a></li>';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
<li class="modify_button"><a href="', $scripturl, '?action=post;msg=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], '">', $txt['modify'], '</a></li>';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
<li class="remove_button"><a href="', $scripturl, '?action=deletemsg;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '" onclick="return confirm(\'', $txt['remove_message'], '?\');">', $txt['remove'], '</a></li>';

// What about splitting it off the rest of the topic?
if ($context['can_split'] && !empty($context['real_num_replies']))
echo '
<li class="split_button"><a href="', $scripturl, '?action=splittopics;topic=', $context['current_topic'], '.0;at=', $message['id'], '">', $txt['split'], '</a></li>';

// Can we restore topics?
if ($context['can_restore_msg'])
echo '
<li class="restore_button"><a href="', $scripturl, '?action=restoretopic;msgs=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['restore_message'], '</a></li>';

// Show a checkbox for quick moderation?
if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $message['can_remove'])
echo '
<li class="inline_mod_check" style="display: none;" id="in_topic_mod_check_', $message['id'], '"></li>';

if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
</ul>';

echo '
</div>';


For the white bars, do this:
Index.css
Search:
.titlebg, .titlebg2, tr.titlebg th, tr.titlebg td, tr.titlebg2 td,
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
{
color: #fff;
font-size: 1em;
background: #27ae60;
font-weight: normal;
}

Replace with:
.titlebg, .titlebg2, tr.titlebg th, tr.titlebg td, tr.titlebg2 td
{
color: #fff;
font-size: 1em;
background: #27ae60 !important;
font-weight: normal;
}
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
{
color: #fff;
font-size: 1em;
background: #34495e !important;
font-weight: normal;
}


Search:
div.title_barIC h4.titlebg
{
background: #2ecc71;
}


Replace with:
div.title_barIC h4.titlebg
{
background: #2ecc71 !important;
}
Title: Re: Reseller
Post by: -Captain Ghost- on August 25, 2014, 10:34:37 PM
Hello daniiel

Once again i want to request you one thing that can you implement this Link (http://css-tricks.com/add-page-transitions-css-smoothstate-js/) in this theme.

Thanks
Title: Re: Reseller
Post by: exabyte on August 27, 2014, 12:12:50 AM
Quote from: Daniiel on August 25, 2014, 04:42:47 PM
Quote from: exabyte on August 23, 2014, 11:15:58 AM
hi daniiel,
First off, I want to congratulate(fuk i hope i spelled that right lmao) on a great theme. one of the best I've seen on any forum. I'm using it on my forum rn, and I was wondering how to have the avatar and user info next to the post, like it is on here.
If you want to display as the default theme, you just have to grab the file and replace Display.template.php which brings the theme reseller.

Quote from: Jade Elizabeth on August 23, 2014, 11:36:45 PM
THANK YOU so much for this theme, it is absolutely fantastic!!

I just have one request. I don't like having to click 100 times for replying to posts. Can the actions button by posts have a quote button beside it please? I think that would be easier for people to reply to posts with :).

Also in admin, packages, some of the text for other themes are white on white bars. And the little clicky things to get info on errors on install are not there so I can't find where the script breaks....EDIT: okay they are if I expand my screen a bit but they're scaling....they don't need to scale :/.
Index.template.php (Themes/Reseller)
Search:
// Generate a strip of buttons.
function template_button_strip($button_strip, $direction = 'top', $strip_options = array())
{
global $settings, $context, $txt, $scripturl;

if (!is_array($strip_options))
$strip_options = array();

// List the buttons in reverse order for RTL languages.
if ($context['right_to_left'])
$button_strip = array_reverse($button_strip, true);

// Create the buttons...
$buttons = array();
foreach ($button_strip as $key => $value)
{
if (!isset($value['test']) || !empty($context[$value['test']]))
$buttons[] = '
<li><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span></a></li>';
}

// No buttons? No button strip either.
if (empty($buttons))
return;

// Make the last one, as easy as possible.
$buttons[count($buttons) - 1] = str_replace('<span>', '<span class="last">', $buttons[count($buttons) - 1]);

echo '
<div class="btn-group', !empty($direction) ? ' navbar-' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '>
<button type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown">
    Actions <span class="caret"></span>
  </button>
<ul class="dropdown-menu" role="menu">',
implode('', $buttons), '
</ul>
</div>';
}

Replace for:
// Generate a strip of buttons.
function template_button_strip($button_strip, $direction = 'top', $strip_options = array())
{
global $settings, $context, $txt, $scripturl;

if (!is_array($strip_options))
$strip_options = array();

// List the buttons in reverse order for RTL languages.
if ($context['right_to_left'])
$button_strip = array_reverse($button_strip, true);

// Create the buttons...
$buttons = array();
foreach ($button_strip as $key => $value)
{
if (!isset($value['test']) || !empty($context[$value['test']]))
$buttons[] = '
<li><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span></a></li>';
}

// No buttons? No button strip either.
if (empty($buttons))
return;

// Make the last one, as easy as possible.
$buttons[count($buttons) - 1] = str_replace('<span>', '<span class="last">', $buttons[count($buttons) - 1]);

echo '
<div class="buttonlist', !empty($direction) ? ' float' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '>
<ul>',
implode('', $buttons), '
</ul>
</div>';
}

Display.template.php (Themes/Reseller)
Search:
<div class="postarea">';

// If this is the first post, (#0) just say when it was posted - otherwise give the reply #.
if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
<div class="btn-group navbar-right">
<button type="button" class="btn btn-primary dropdown-toggle btn-sm" data-toggle="dropdown">Actions <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu"">';

// Maybe we can approve it, maybe we should?
if ($message['can_approve'])
echo '
<li class="approve_button"><a href="', $scripturl, '?action=moderate;area=postmod;sa=approve;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['approve'], '</a></li>';

// Can they reply? Have they turned on quick reply?
if ($context['can_quote'] && !empty($options['display_quick_reply']))
echo '
<li class="quote_button"><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '" onclick="return oQuickReply.quote(', $message['id'], ');">', $txt['quote'], '</a></li>';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_quote'])
echo '
<li class="quote_button"><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '">', $txt['quote'], '</a></li>';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
<li class="modify_button"><a href="', $scripturl, '?action=post;msg=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], '">', $txt['modify'], '</a></li>';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
<li class="remove_button"><a href="', $scripturl, '?action=deletemsg;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '" onclick="return confirm(\'', $txt['remove_message'], '?\');">', $txt['remove'], '</a></li>';

// What about splitting it off the rest of the topic?
if ($context['can_split'] && !empty($context['real_num_replies']))
echo '
<li class="split_button"><a href="', $scripturl, '?action=splittopics;topic=', $context['current_topic'], '.0;at=', $message['id'], '">', $txt['split'], '</a></li>';

// Can we restore topics?
if ($context['can_restore_msg'])
echo '
<li class="restore_button"><a href="', $scripturl, '?action=restoretopic;msgs=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['restore_message'], '</a></li>';

if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
</ul>
</div>
<ul class="reset floatright" style="margin: 5px 15px 0 7px;">';

// Show a checkbox for quick moderation?
if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $message['can_remove'])
echo '
<li class="inline_mod_check" style="display: none;" id="in_topic_mod_check_', $message['id'], '"></li>';

echo'
</ul>
<div class="keyinfo">
<div class="messageicon">
<img src="', $message['icon_url'] . '" alt=""', $message['can_modify'] ? ' id="msg_icon_' . $message['id'] . '"' : '', ' />
</div>
<h5 id="subject_', $message['id'], '">
<a href="', $message['href'], '" rel="nofollow">', $message['subject'], '</a>
</h5>
<div class="smalltext">&#171; <strong>', !empty($message['counter']) ? $txt['reply_noun'] . ' #' . $message['counter'] : '', ' ', $txt['on'], ':</strong> ', $message['time'], ' &#187;</div>
<div id="msg_', $message['id'], '_quick_mod"></div>
</div>';

Replace for:
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="', $message['icon_url'] . '" alt=""', $message['can_modify'] ? ' id="msg_icon_' . $message['id'] . '"' : '', ' />
</div>
<h5 id="subject_', $message['id'], '">
<a href="', $message['href'], '" rel="nofollow">', $message['subject'], '</a>
</h5>
<div class="smalltext">&#171; <strong>', !empty($message['counter']) ? $txt['reply_noun'] . ' #' . $message['counter'] : '', ' ', $txt['on'], ':</strong> ', $message['time'], ' &#187;</div>
<div id="msg_', $message['id'], '_quick_mod"></div>
</div>';

// If this is the first post, (#0) just say when it was posted - otherwise give the reply #.
if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
<ul class="reset smalltext quickbuttons">';

// Maybe we can approve it, maybe we should?
if ($message['can_approve'])
echo '
<li class="approve_button"><a href="', $scripturl, '?action=moderate;area=postmod;sa=approve;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['approve'], '</a></li>';

// Can they reply? Have they turned on quick reply?
if ($context['can_quote'] && !empty($options['display_quick_reply']))
echo '
<li class="quote_button"><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '" onclick="return oQuickReply.quote(', $message['id'], ');">', $txt['quote'], '</a></li>';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_quote'])
echo '
<li class="quote_button"><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '">', $txt['quote'], '</a></li>';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
<li class="modify_button"><a href="', $scripturl, '?action=post;msg=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], '">', $txt['modify'], '</a></li>';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
<li class="remove_button"><a href="', $scripturl, '?action=deletemsg;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '" onclick="return confirm(\'', $txt['remove_message'], '?\');">', $txt['remove'], '</a></li>';

// What about splitting it off the rest of the topic?
if ($context['can_split'] && !empty($context['real_num_replies']))
echo '
<li class="split_button"><a href="', $scripturl, '?action=splittopics;topic=', $context['current_topic'], '.0;at=', $message['id'], '">', $txt['split'], '</a></li>';

// Can we restore topics?
if ($context['can_restore_msg'])
echo '
<li class="restore_button"><a href="', $scripturl, '?action=restoretopic;msgs=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['restore_message'], '</a></li>';

// Show a checkbox for quick moderation?
if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $message['can_remove'])
echo '
<li class="inline_mod_check" style="display: none;" id="in_topic_mod_check_', $message['id'], '"></li>';

if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
</ul>';

echo '
</div>';


For the white bars, do this:
Index.css
Search:
.titlebg, .titlebg2, tr.titlebg th, tr.titlebg td, tr.titlebg2 td,
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
{
color: #fff;
font-size: 1em;
background: #27ae60;
font-weight: normal;
}

Replace with:
.titlebg, .titlebg2, tr.titlebg th, tr.titlebg td, tr.titlebg2 td
{
color: #fff;
font-size: 1em;
background: #27ae60 !important;
font-weight: normal;
}
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
{
color: #fff;
font-size: 1em;
background: #34495e !important;
font-weight: normal;
}


Search:
div.title_barIC h4.titlebg
{
background: #2ecc71;
}


Replace with:
div.title_barIC h4.titlebg
{
background: #2ecc71 !important;
}

sorry i meant on mobile lol
lke on mbile, the avatar is above the post
Title: Re: Reseller (Portal 'Home' link not work using Menu Editor mod)
Post by: OCJ on August 31, 2014, 09:46:48 AM
If using the Menu Editor mod to add or change links then Reseller doesn't make the 'Home' link for Simple Portal active.

Same problem using the drop down menu for small screens.



Title: Re: Reseller
Post by: Jade Elizabeth on September 01, 2014, 10:23:36 AM
Thank you SO MUCH Daniiel!! :D

Can I ask if quick editing posts works for you? It's not saving for me. If it's not your theme I will look into my mods. I can't imagine what broke it!
Title: Re: Reseller
Post by: Daniiel on September 01, 2014, 08:20:12 PM
Quote from: -Captain Ghost- on August 25, 2014, 10:34:37 PM
Hello daniiel

Once again i want to request you one thing that can you implement this Link (http://css-tricks.com/add-page-transitions-css-smoothstate-js/) in this theme.

Thanks
Well, try what you say but could not. When I have a little more time I'll try again.


Quote
sorry i meant on mobile lol
lke on mbile, the avatar is above the post
But it should not be? Well whatever, attach the file display.template.php


Quote from: Jade Elizabeth on September 01, 2014, 10:23:36 AM
Thank you SO MUCH Daniiel!! :D

Can I ask if quick editing posts works for you? It's not saving for me. If it's not your theme I will look into my mods. I can't imagine what broke it!
It works for me.

Greetings!
PD: igirisjin I owe you, then I will help you.
Title: Re: Reseller
Post by: signaleleven on September 03, 2014, 11:15:07 AM
Hello Daniiel!
Great job! I tested it today. I think I have to try some of the tweaks listed on this thread, and add a few modifications specific to our usage, but it looks really promising!
The "mobile" version is still a bit weird for me, I'll try the tweaks and perhaps post questions here in the future.

In the mean time, have you thought about putting the theme on github? It would be easier to propose bugfixes.
Title: Re: Reseller
Post by: -Captain Ghost- on September 04, 2014, 02:58:58 AM
Hello Daniiel

Can you do something to resize avatars

Thanks
Title: Re: Reseller
Post by: lifeguard81 on September 11, 2014, 12:42:05 PM
Quote from: -Captain Ghost- on September 04, 2014, 02:58:58 AM
Hello Daniiel

Can you do something to resize avatars

Thanks
I also like this
Avatars are way to big  :)
Title: Re: Reseller
Post by: swaggaderby on September 17, 2014, 01:44:05 PM
PLEASe i wish to change the blue background where Reseller is written?please help
Title: Re: Reseller
Post by: Daniiel on September 18, 2014, 08:14:40 PM
For the people who said that the avatar is too big, do this:
Index.css
Search and delete:
.poster li.avatar img
{
width: 100%;
}



Quote from: swaggaderby on September 17, 2014, 01:44:05 PM
PLEASe i wish to change the blue background where Reseller is written?please help
Search in Reseller.css:
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
}

And change #3498db for the color what you want.
Title: Re: Reseller
Post by: Jade Elizabeth on September 21, 2014, 01:45:31 AM
Hey that JS bug where the quick edit doesn't work must be in this theme, line 399 display template has an added space that causes it to break on mine and I haven't edited that code at all :).

Info here:
http://www.simplemachines.org/community/index.php?topic=527883.msg3745047#msg3745047
Title: Re: Reseller
Post by: lifeguard81 on September 21, 2014, 08:40:56 AM
Quote from: Daniiel on September 18, 2014, 08:14:40 PM
For the people who said that the avatar is too big, do this:
Index.css
Search and delete:
.poster li.avatar img
{
width: 100%;
}



Quote from: swaggaderby on September 17, 2014, 01:44:05 PM
PLEASe i wish to change the blue background where Reseller is written?please help
Search in Reseller.css:
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
}

And change #3498db for the color what you want.
thnx daniel!
Title: Re: Reseller
Post by: ATX1976 on October 01, 2014, 04:12:12 PM
I realize this is a dumb question, but I can not seem to find the reply button in this theme. Where is it?  I'm probably looking right at it and missing it.
Title: Re: Reseller
Post by: ATX1976 on October 01, 2014, 04:54:57 PM
Quote from: ATX1976 on October 01, 2014, 04:12:12 PM
I realize this is a dumb question, but I can not seem to find the reply button in this theme. Where is it?  I'm probably looking right at it and missing it.

Disregard that. I found it hidden in the green + box.
Title: Re: Reseller
Post by: ATX1976 on October 01, 2014, 05:05:58 PM
One more question. The avatars are larger in this theme than the one I was previously using. Now, the images are distorted. Is there a way to fix this? 
Title: Re: Reseller
Post by: Daniiel on October 02, 2014, 07:29:08 PM
Quote from: ATX1976 on October 01, 2014, 05:05:58 PM
One more question. The avatars are larger in this theme than the one I was previously using. Now, the images are distorted. Is there a way to fix this?

Look at previous messages.
Title: Re: Reseller
Post by: ATX1976 on October 02, 2014, 10:31:53 PM
Quote from: Daniiel on October 02, 2014, 07:29:08 PM
Quote from: ATX1976 on October 01, 2014, 05:05:58 PM
One more question. The avatars are larger in this theme than the one I was previously using. Now, the images are distorted. Is there a way to fix this?

Look at previous messages.

Thanks, I don't know how I missed that. LOL  BTW, thanks for a great theme and equally good support.

Also, I have a few other questions.

1. I can't figure out how to change the hover color on the main menu buttons.

2. How can I make the category & post titles bold?

3. Is there a way to add a Google + icon at the bottom of the page?
Title: Re: Reseller
Post by: Daniiel on October 04, 2014, 01:39:09 AM
Quote from: ATX1976 on October 02, 2014, 10:31:53 PM
Quote from: Daniiel on October 02, 2014, 07:29:08 PM
Quote from: ATX1976 on October 01, 2014, 05:05:58 PM
One more question. The avatars are larger in this theme than the one I was previously using. Now, the images are distorted. Is there a way to fix this?

Look at previous messages.

Thanks, I don't know how I missed that. LOL  BTW, thanks for a great theme and equally good support.

Also, I have a few other questions.

1. I can't figure out how to change the hover color on the main menu buttons.

2. How can I make the category & post titles bold?

3. Is there a way to add a Google + icon at the bottom of the page?
1. Reseller.css (Themes/Reseller/css)
Search:
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus
{
color: #FFF;
background-color: #2a3038;
box-shadow: 0 -3px #272d35 inset;
}


And change #2a3038 for the color what you want.

2. index.css (Themes/Reseller/css)
Search:
h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg
{
overflow: hidden;
height: 35px;
line-height: 35px;
font-size: 1em;
}

Replace with:
h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg
{
overflow: hidden;
height: 35px;
line-height: 35px;
font-size: 1em;
font-weight:  bold;
}

3. index.template.php (Themes/Reseller)
Search:
if(!empty($settings['youtube_check']))
echo'
<a href="', !empty($settings['youtube_text']) ? $settings['youtube_text'] : 'http://www.youtube.com' ,'"><img src="', $settings['images_url'], '/social_icons/youtube.png" alt="', $txt['rs_youtube'], '" /></a>';

Replace with:
if(!empty($settings['youtube_check']))
echo'
<a href="', !empty($settings['youtube_text']) ? $settings['youtube_text'] : 'http://www.youtube.com' ,'"><img src="', $settings['images_url'], '/social_icons/youtube.png" alt="', $txt['rs_youtube'], '" /></a>';
if(!empty($settings['google_check']))
echo'
<a href="', !empty($settings['google_text']) ? $settings['google_text'] : 'http://www.google.com' ,'"><img src="', $settings['images_url'], '/social_icons/google.png" alt="', $txt['rs_google'], '" /></a>';


Settings.template.php (Themes/Reseller)
Search:
array(
'id' => 'youtube_check',
'label' => $txt['youtube_check'],
),
array(
'id' => 'youtube_text',
'label' => $txt['youtube_text'],
'type' => 'text',
),


Replace with:
array(
'id' => 'youtube_check',
'label' => $txt['youtube_check'],
),
array(
'id' => 'youtube_text',
'label' => $txt['youtube_text'],
'type' => 'text',
),
array(
'id' => 'google_check',
'label' => $txt['google_check'],
),
array(
'id' => 'google_text',
'label' => $txt['google_text'],
'type' => 'text',
),


ThemeStrings.english.php (Themes/Reseller/languages)
Add before ?>:
$txt['rs_google'] = 'google +';
$txt['google_check'] = 'Enable icon of google +';
$txt['google_text'] = 'URL of the page to google +';


And finally, just upload the instagram icon to Themes/Reseller/images/social_icons/
The name should be google.png
You can use this image I found https://cdn0.iconfinder.com/data/icons/social-circle/512/google-32.png
Title: Re: Reseller
Post by: levely on October 07, 2014, 08:36:50 PM
Hi, I just installed the Reseller theme. Working great so far. I'm also using the SimpleAds mod and I noticed that my ads in the sidebar and in between posts are no longer there; however, my header and footer ads are still displaying. Does this have something to do with the responsive theme or is it most likely a bug in SimpleAds mod? 
Title: Re: Reseller
Post by: BonoVox on October 12, 2014, 11:54:09 AM
Hello there, first of all, I'd like to thank you for releasing this great theme and for free, but I have a little doubt: is this theme editable with Adobe Dreamweaver CC?, I mean, can I open this theme with that program? (and how?) or with another program?.
I'm not a big pro in coding, so maybe Dreamweaver or another could help me a little with the coding and editing for my forum.

Regards, and thanks a lot.
Title: Re: Reseller
Post by: levely on October 12, 2014, 02:34:56 PM
Daniiel

How would I remove the replies / views images? (the eyeball and the message icon)
Title: Re: Reseller
Post by: Douglby on October 15, 2014, 10:04:52 AM
Hi

I recently installed the reseller theme however it its only visible to people with the "Administrate forum and database" permissions ticked (I've forced it to apply the theme to all users but still doesn't apply) any reason as to why its doing this?

Also (not a must) but is there a way to enable the old news broadcast that was at the top of the page on this theme as well?

Cheers
Title: Re: Reseller
Post by: Exilion on October 19, 2014, 11:52:29 AM
Hi! Thank you for such a great Theme!
I have a question, i use OneAll login system http://www.oneall.com/
How could i insert such section as on screenshot in your quick login form?

What oneall says:


Copy the code below to the place where the plugin has to be displayed:
Important: Do not forget to replace #your_callback_uri# by the url to a script on your server. More details are available in our implementation guide.

<!-- The plugin will be embedded into this div //-->
<div id="oa_social_login_container"></div>

<script type="text/javascript">
var _oneall = _oneall || [];
_oneall.push(['social_login', 'set_callback_uri', window.location.href]);
_oneall.push(['social_login', 'set_providers', ['facebook', 'google', 'vkontakte', 'youtube']]);
_oneall.push(['social_login', 'do_render_ui', 'oa_social_login_container']);
</script>




And the other question, how could I change standart font size by writing a reply or creating a new theme?
Title: Re: Reseller
Post by: Jade Elizabeth on October 19, 2014, 09:51:53 PM
Use the oneall plugin and it does all that for you, you don't need to do anything but set up each account.
Title: Re: Reseller
Post by: Akshtsaklani7 on October 20, 2014, 01:08:28 AM
Quote from: Exilion on October 19, 2014, 11:52:29 AM
Hi! Thank you for such a great Theme!
I have a question, i use OneAll login system http://www.oneall.com/
How could i insert such section as on screenshot in your quick login form?

What oneall says:... snip..


I have the same question. How do we display the icons on modal login dialog box.
@Jade Elizabeth, the theme has a quick login dialog box that doesn't display the icons by default, though the original login page comes up with the icons.

Temporarily I am using the following code in Reseller/index.template.php

find
</div>
<div class="modal-footer">


Replace
<p style="text-align:left;">
<a href="http://yourdomain.com/forum/index.php?action=login"><strong>Login with your social network</strong></a>  //replace yourdomain with your sites domain
</p>
</div>
<div class="modal-footer">


This displays the sentence "Login with your social network" which redirects to the default login page where the icons appear.

Also in place of the code above, I tried adding

template_oneall_social_login();

But this function gives an error most of the times and works fine sometimes.
Title: Re: Reseller
Post by: Exilion on October 23, 2014, 03:17:01 AM
Quote from: Akshtsaklani7 on October 20, 2014, 01:08:28 AM
Temporarily I am using the following code in Reseller/index.template.php

find
</div>
<div class="modal-footer">


Replace
<p style="text-align:left;">
<a href="http://yourdomain.com/forum/index.php?action=login"><strong>Login with your social network</strong></a>  //replace yourdomain with your sites domain
</p>
</div>
<div class="modal-footer">


This displays the sentence "Login with your social network" which redirects to the default login page where the icons appear.

Also in place of the code above, I tried adding

template_oneall_social_login();

But this function gives an error most of the times and works fine sometimes.

I made a redirect to a classic login page for now until i'll find a solution.


The other problem with a code in post 14 (to make header menu fade in and out) is that i become an overlay of elements. (screens in attachment)
Title: Re: Reseller
Post by: Akshtsaklani7 on October 23, 2014, 10:58:45 AM
Quote from: Exilion on October 23, 2014, 03:17:01 AM

The other problem with a code in post 14 (to make header menu fade in and out) is that i become an overlay of elements. (screens in attachment)

Find the following code in Reseller.css and adjust the value of "margin-top"

header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
margin-top: 50px;
}


I guess 100px will work fine.
Title: Re: Reseller
Post by: Oscar the Grouch on October 31, 2014, 10:40:31 AM
is there away to put the profile pictures to the left of the post instead of on top of each post?

when the screen gets smaller it stacks them making reading difficult
Title: Re: Reseller
Post by: Porr on November 02, 2014, 11:35:03 AM
I love it :-)

I am not a php guru but i could figure most stuff out i want to customize. But some how 1 thing eledud me. How can i just change the general background color? and or the color of the balloons (reaction balloons in the forum)

Hope someone can point it out to me. I changed lots of stuff and see what happens. Maybe i missed it.
Title: Re: Reseller
Post by: Miguel86 on November 02, 2014, 04:35:07 PM
Hi Daniiel:

Thanks for the theme.
I installed it, and i have activated on SMF to show a pop up message when i receive a private message, but with your theme is not shown this alert.
Anything else needed to addapt to have this SMF function working?

Best regards.
Title: Re: Reseller
Post by: Oscar the Grouch on November 03, 2014, 08:04:39 AM
Quote from: Porr on November 02, 2014, 11:35:03 AM
I love it :-)

I am not a php guru but i could figure most stuff out i want to customize. But some how 1 thing eledud me. How can i just change the general background color? and or the color of the balloons (reaction balloons in the forum)

Hope someone can point it out to me. I changed lots of stuff and see what happens. Maybe i missed it.

use chrome

click on the section you want to change the color of then right click and "inspect element" that will tell you what line number and what css file the color is coming from.
Title: Re: Reseller
Post by: Porr on November 03, 2014, 08:35:22 AM
@Oscar the Grouch

I just wanted to post that i found it while using firefox and inspect element. But thx anyway :-)
Title: Re: Reseller
Post by: Oscar the Grouch on November 03, 2014, 08:42:26 AM
Quote from: levely on October 12, 2014, 02:34:56 PM
Daniiel

How would I remove the replies / views images? (the eyeball and the message icon)

reseller.css line 216 and 224
Title: Re: Reseller
Post by: Porr on November 03, 2014, 02:27:57 PM
Found out a lot of nice stuff.First time i am really digging into a theme :D

I am wondering. Read it before but did not really get the awnser. When your in the admin menu and watching settings the fonts are large. I saw it is from the bootstrap.css. But that is not where i need to change it. I saw in the index.css scaling options but nothing seems to work.

So how can i just keep the fonts a little smaller when in the admin/config options?

Added a screenshot  ;D
Title: Re: Reseller
Post by: Oscar the Grouch on November 04, 2014, 09:39:44 AM
Quote from: Porr on November 03, 2014, 02:27:57 PM
Found out a lot of nice stuff.First time i am really digging into a theme :D

I am wondering. Read it before but did not really get the awnser. When your in the admin menu and watching settings the fonts are large. I saw it is from the bootstrap.css. But that is not where i need to change it. I saw in the index.css scaling options but nothing seems to work.

So how can i just keep the fonts a little smaller when in the admin/config options?

Added a screenshot  ;D

index.css

.smalltext, tr.smalltext th
{
font-size: 0.85em;
font-family: verdana, sans-serif;

adjust the font size here.
Title: Re: Reseller
Post by: Porr on November 04, 2014, 09:45:08 AM
@ Oscar the Grouch

Thank you :-)

Almost ready now to make it the default theme for the forum i run  :D.
Title: Re: Reseller
Post by: Porr on November 04, 2014, 10:21:48 AM


index.css

.smalltext, tr.smalltext th
{
font-size: 0.85em;
font-family: verdana, sans-serif;

adjust the font size here.
[/quote]

Hmm it changed something. But not the other text. Ofcourse i tried also middle text, and other parts near that code. This is the result when i change small text.

Title: Re: Reseller
Post by: Oscar the Grouch on November 04, 2014, 10:51:08 AM
index line 5 for links then..... that will be a universal change. not sure if thats what you were after tho
Title: Re: Reseller
Post by: Porr on November 06, 2014, 02:54:31 AM
Well it did not really do the job but i am happy how it looks now.

I have 2 questions left.

The first:

1 think that is missing is a message about members that are waiting approval. Normaly when i had a theme i could easily put this code:
// Are there any members waiting for approval?
if (!empty($context['unapproved_members']))
echo '
<li>', $context['unapproved_members'] == 1 ? $txt['approve_thereis'] : $txt['approve_thereare'], ' <a href="', $scripturl, '?action=admin;area=viewmembers;sa=browse;type=approve">', $context['unapproved_members'] == 1 ? $txt['approve_member'] : $context['unapproved_members'] . ' ' . $txt['approve_members'], '</a> ', $txt['approve_members_waiting'], '</li>';
  }

in the indextemplate.php. I tried some stuff but it looks really different (the code) that the other theme's i used. Any ideas?

The second. I saw on the SMF tricks site that the green + box was replaced with text (actions). I would like to do the same.
Title: Re: Reseller
Post by: Porr on November 06, 2014, 06:01:17 AM
Quote from: ultrazonex2 on August 10, 2014, 08:42:16 AM
How do I have these buttons displayed on my forum under the logo like in smftricks.com?
 Home
 Search
 Team
 Downloads
 Login
 Register

Also note that a 'logout button' is shown too when you are logged in. Note everyone will know that some button exist under toggle navigation.


Thanks.
I tried to do the same. Using the mobile menu and changing it to work always. And then ofcourse the submenu should open differently. Like at SMFtrick.com. I could not figure it out.
Title: Re: Reseller
Post by: superbiagi on November 09, 2014, 09:20:52 AM
Hi,
is it possible to remove the buttons "login" and "register" from the blue header? :)
thank you

eta: solved!
Title: Re: Reseller
Post by: mulwa on November 10, 2014, 04:45:57 AM
how can i fix the menu bar not to be moveable?. Then if possible i'd like to add search box on the nav menu right side just like facebook. Thanks
Title: Re: Reseller
Post by: Dylert on November 12, 2014, 02:33:02 AM
Great theme! I just love it, but want to make a few changes.

1. How can I make the black menu line on top static? I want it to be visible after scrolling down the pages.

2. How can I write the text "MENU" beside the menu button on the right top? (see attachment)

3. How can I make a home-link on the top left. Maybe with a home-icon? (see attachment)

Hopefully someone can help me with this! Thanks a lot! :)

Title: Re: Reseller
Post by: Akshtsaklani7 on November 12, 2014, 06:42:51 AM
Quote from: Dylert on November 12, 2014, 02:33:02 AM
Great theme! I just love it, but want to make a few changes.

1. How can I make the black menu line on top static? I want it to be visible after scrolling down the pages.

Quote from: Diego Andrés on July 30, 2014, 11:27:56 AM
Sure, just edit the reseller.css, find this
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
}


Replace with
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
position: fixed;
top: 0;
width: 100%;
z-index: 10000;
}


And find
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
}


Replace with
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
margin-top: 50px;
}


Try  :P
Title: Re: Reseller
Post by: Dylert on November 12, 2014, 09:23:26 AM
Nice! Thanks a lot!

What about the two other things:

2. How can I write the text "MENU" beside the menu button on the right top? (see attachment)

3. How can I make a home-link on the top left. Maybe with a home-icon? (see attachment)
Title: Re: Reseller
Post by: batto on November 13, 2014, 06:21:00 AM
Can i adapt blue colors of theme to pink color of my web?

http://foro.ramenparados.com/index.php

http://www.ramenparados.es
Title: Re: Reseller
Post by: ForumMix on November 15, 2014, 01:04:38 AM
Hope someone can help me. I would like to replace these green color to the same color as the categories.

I've been looking for reseller. css, but can not find it. Can anyone point out any line that is located at.
Attach photos where you understand the color change.

Title: Re: Reseller
Post by: ForumMix on November 15, 2014, 03:31:06 AM
I found everything now and now everything is changed so that I wanted.
Title: Re: Reseller
Post by: ForumMix on November 15, 2014, 12:25:56 PM
I was wondering how to increase pages on this theme. Today, there are many temor with this adaptation-Forum width:
Forum width. For example: 950px, 80%, 1240px.

But this is missing this. Now I wonder where this can be? Can anyone identify this?
Title: Re: Reseller
Post by: colby2152 on November 15, 2014, 12:58:25 PM
I need help with this theme as it does not support double level dropdowns within the menu.
Title: Re: Reseller
Post by: Daniiel on November 21, 2014, 12:50:04 AM
Quote from: colby2152 on November 15, 2014, 12:58:25 PM
I need help with this theme as it does not support double level dropdowns within the menu.
Index.css
Add to the end:
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

Index.template.php
Search:
// Show the menu up top. Something like [home] [help] [profile] [logout]...
function template_menu()
{
global $context, $settings, $options, $scripturl, $txt;

foreach ($context['menu_buttons'] as $act => $button)
{
echo '
<li id="button_', $act, '" class="', $button['sub_buttons'] ? 'dropdown ' : '', '', $button['active_button'] ? 'active ' : '', '">
<a ', $button['sub_buttons'] ? 'class="dropdown-toggle" ' : '', 'href="', $button['sub_buttons'] ? '#' : $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '', $button['sub_buttons'] ? ' data-toggle="dropdown"' : '', '>
', $button['title'], '
', $button['sub_buttons'] ? '<span class="caret"></span>' : '' ,'
</a>';
if (!empty($button['sub_buttons']))
{
echo '
<ul class="dropdown-menu" role="menu">';

foreach ($button['sub_buttons'] as $childbutton)
{
echo '
<li>
<a href="', $childbutton['href'], '"', isset($childbutton['target']) ? ' target="' . $childbutton['target'] . '"' : '', '>
', $childbutton['title'] , '
</a>
</li>';
}
echo '
</ul>';
}
echo '
</li>';
}
}

Replace with:
// Show the menu up top. Something like [home] [help] [profile] [logout]...
function template_menu()
{
global $context, $settings, $options, $scripturl, $txt;

foreach ($context['menu_buttons'] as $act => $button)
{
echo '
<li id="button_', $act, '" class="', !empty($button['sub_buttons']) ? 'dropdown' . (!empty($childbutton['sub_buttons']) ? '-submenu' : '') . '' : '', '', $button['active_button'] ? ' active' : '', '">
<a ', $button['sub_buttons'] ? 'class="dropdown-toggle" ' : '', 'href="', $button['sub_buttons'] ? '#' : $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '', $button['sub_buttons'] ? ' data-toggle="dropdown"' : '', '>
', $button['title'], '
', $button['sub_buttons'] ? '<span class="caret"></span>' : '' ,'
</a>';

if (!empty($button['sub_buttons']))
{
echo '
<ul class="dropdown-menu" role="menu">';

foreach ($button['sub_buttons'] as $childbutton)
{
echo '
<li ', !empty($childbutton['sub_buttons']) ? 'class="dropdown-submenu"' : '', '>
<a href="', $childbutton['href'], '"', isset($childbutton['target']) ? ' target="' . $childbutton['target'] . '"' : '', '>
<span', isset($childbutton['is_last']) ? ' class="last"' : '', '>', $childbutton['title'], !empty($childbutton['sub_buttons']) ? '...' : '', '</span>
</a>';
// 3rd level menus :)
if (!empty($childbutton['sub_buttons']))
{
echo '
<ul class="dropdown-menu">';

foreach ($childbutton['sub_buttons'] as $grandchildbutton)
echo '
<li>
<a href="', $grandchildbutton['href'], '"', isset($grandchildbutton['target']) ? ' target="' . $grandchildbutton['target'] . '"' : '', '>
<span', isset($grandchildbutton['is_last']) ? ' class="last"' : '', '>', $grandchildbutton['title'], '</span>
</a>
</li>';

echo '
</ul>';
}

echo '
</li>';
}
echo '
</ul>';
}
echo '
</li>';
}
}

Try with that.
Title: Re: Reseller
Post by: colby2152 on November 21, 2014, 11:45:25 AM
Thanks Daniiel.  The menu works perfectly now!  The only issue remaining for me is with how it displays on mobile.  Since I have 728x90 ads and SimplePortal right-hand blocks, it doesn't consolidate the view on mobile.  This is a general question, but is there a way to modify my HTML code that makes it show different sized ads if viewing on mobile?
Title: Re: Reseller
Post by: Oscar the Grouch on November 25, 2014, 06:23:35 AM
is their away to change the value of the "recent unread topics button"  id like it to be just all unread.
Title: Re: Reseller
Post by: Akshtsaklani7 on November 28, 2014, 02:16:29 AM
Quote from: Oscar the Grouch on November 25, 2014, 06:23:35 AM
is their away to change the value of the "recent unread topics button"  id like it to be just all unread.

Try this

Themes/default/languages/index.english.php
Find
$txt['unread_topics_visit'] = 'Recent Unread Topics';

Replace
$txt['unread_topics_visit'] = 'All unread';
Title: Re: Reseller
Post by: motosimak on November 28, 2014, 04:31:33 AM
how to move the block to the left of the profile of the user message , as is done in the block news simpleportal here http://knowpc.ru/index.php?page=news
Title: Re: Reseller
Post by: colby2152 on November 28, 2014, 03:07:49 PM
Quote from: motosimak on November 28, 2014, 04:31:33 AM
how to move the block to the left of the profile of the user message , as is done in the block news simpleportal here http://knowpc.ru/index.php?page=news

You are facing the same issue as I am.  For ideal display in mobile, we want the SimplePortal blocks to collapse.
Title: Re: Reseller
Post by: rubix123 on November 28, 2014, 11:43:33 PM
Wow great theme! Thank you so much for this.  ;D

I only have 1 problem..

Where can I lower the log in pop up window so that the main menu is not covering the top? ( I added the hovering menu on scroll down edit from the first page )

Thank you for any response :)
Title: Re: Reseller
Post by: HRM on November 30, 2014, 07:24:01 AM
Quote from: -Captain Ghost- on August 01, 2014, 02:14:15 AM
There is a problem that theme is not resizing according to mobile screen size and one more problem that there is a Spanish text when you click login below password box.

Edit:
I had observed the code which is causing problem
It is a code in portal.css of simpleportal
Here it is body
{
min-width: 750px;
}


i had modified it to body
{
min-width: device-width;
}





Thanks! This has been very useful to me. Had same issue with a small LG. Also good to resize the header image.
Title: Re: Reseller
Post by: CitrusSponge on November 30, 2014, 08:07:11 AM
I've been using this theme for awhile, and it's not very mobile friendly lol.
Title: Re: Reseller
Post by: HRM on November 30, 2014, 09:11:32 AM
Agree, needs quite some modification in css for responsiveness. I can imagine it does work better without SimplePortal.
Title: Re: Reseller
Post by: Akshtsaklani7 on December 01, 2014, 02:11:03 AM
Just hide the left and right blocks of simple portal for mobiles using media screen and it works fine.

Quote from: rubix123 on November 28, 2014, 11:43:33 PM
Wow great theme! Thank you so much for this.  ;D

I only have 1 problem..

Where can I lower the log in pop up window so that the main menu is not covering the top? ( I added the hovering menu on scroll down edit from the first page )

Thank you for any response :)

find in reseller.css

header .modal-content {
box-shadow: none;
border: none;
}


replace
header .modal-content {
box-shadow: none;
border: none;
margin-top: 55px;
}
Title: Re: Reseller
Post by: Oscar the Grouch on December 01, 2014, 08:22:23 AM
Quote from: Akshtsaklani7 on November 28, 2014, 02:16:29 AM
Quote from: Oscar the Grouch on November 25, 2014, 06:23:35 AM
is their away to change the value of the "recent unread topics button"  id like it to be just all unread.

Try this

Themes/default/languages/index.english.php
Find
$txt['unread_topics_visit'] = 'Recent Unread Topics';

Replace
$txt['unread_topics_visit'] = 'All unread';

will that give me all the unreads or just the button will say all unread?
Title: Re: Reseller
Post by: colby2152 on December 01, 2014, 08:09:40 PM
Quote from: Akshtsaklani7 on December 01, 2014, 02:11:03 AM
Just hide the left and right blocks of simple portal for mobiles using media screen and it works fine.

What is media screen?
Title: Re: Reseller
Post by: Daniiel on December 01, 2014, 08:43:45 PM
Quote from: colby2152 on December 01, 2014, 08:09:40 PM
Quote from: Akshtsaklani7 on December 01, 2014, 02:11:03 AM
Just hide the left and right blocks of simple portal for mobiles using media screen and it works fine.

What is media screen?
"A media query consists of a media type and at least one expression that limits the style sheets' scope by using media features, such as width, height, and color. Media queries, added in CSS3, let the presentation of content be tailored to a specific range of output devices without having to change the content itself."

You can read more here: https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries

Returning to the case, he says add this code to the end of index.css.
@media (max-width: 991px) {
#sp_left, #sp_right
{
display: none;
}
}


Title: Re: Reseller
Post by: colby2152 on December 01, 2014, 11:07:14 PM
Thanks Daniiel!
Title: Re: Reseller
Post by: Akshtsaklani7 on December 04, 2014, 04:46:21 AM
Quote from: Oscar the Grouch on December 01, 2014, 08:22:23 AM
will that give me all the unreads or just the button will say all unread?

The button will read all unread and clicking on that button will open up a page with a list of all unread threads/posts
Title: Re: Reseller
Post by: motosimak on December 05, 2014, 02:26:11 PM
QuoteReturning to the case, he says add this code to the end of index.css.
Code: [Select]
@media (max-width: 991px) {
   #sp_left, #sp_right
   {
      display: none;
   }
}

unfortunately does not work

example of code set in the mobile version - knowpc.ru
Title: Re: Reseller
Post by: Akshtsaklani7 on December 06, 2014, 09:02:02 AM
Quote from: motosimak on December 05, 2014, 02:26:11 PM

unfortunately does not work


This has to be pasted in the end of the file themes/default/css/portal.css
@media only screen and (max-width: 480px)
{
#sp_left, #sp_right
{
display: none;
visibility: hidden;
}
}


It worked for me.. www.theultimatestep.net
Title: Re: Reseller
Post by: HRM on December 06, 2014, 11:40:03 AM
To make responsive when using SP agree with Akshtsaklani7.
Quote from: Akshtsaklani7 on December 06, 2014, 09:02:02 AM
This has to be pasted in the end of the file themes/default/css/portal.css

Or check here (http://www.smfhelp.com/index.php?topic=29.0)  for another helppage on the subject.
Works fine for me on most themes, also Reseller theme which I started to use as my main Mobile theme.  ;)


For space between sidebars and sp_center :

Quote from: Daniiel on August 20, 2014, 03:37:38 AM
Reseller.css

Add to the end:

#sp_center
{
     padding: 0 5px;
}


thanks a lot Daniel thats still very useful.
Title: Re: Reseller
Post by: rubix123 on December 11, 2014, 12:58:09 AM
Hello. The edit posted on the first page works on my desktop but in mobile the nav bar keeps fading in and out every second. Is anyone else having this problem? Or is everyone using something else for mobile support?


Quote from: Diego Andrés on July 30, 2014, 11:27:56 AM
Sure, just edit the reseller.css, find this
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
}


Replace with
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
position: fixed;
top: 0;
width: 100%;
z-index: 10000;
}


And find
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
}


Replace with
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
margin-top: 50px;
}


Try  :P
Title: Re: Reseller
Post by: Akshtsaklani7 on December 12, 2014, 08:20:41 AM
Quote from: rubix123 on December 11, 2014, 12:58:09 AM
Hello. The edit posted on the first page works on my desktop but in mobile the nav bar keeps fading in and out every second. Is anyone else having this problem? Or is everyone using something else for mobile support?


Quote from: Diego Andrés on July 30, 2014, 11:27:56 AM
Sure, just edit the reseller.css, find this
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
}


Replace with
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
position: fixed;
top: 0;
width: 100%;
z-index: 10000;
}


And find
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
}


Replace with
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
margin-top: 50px;
}


Try  :P

I had the same question. And the nav bar completely disappeared when i used to scroll to top on portal page. but I never got an answer to this. So I removed it.
Title: Re: Reseller
Post by: bry82 on December 13, 2014, 10:57:44 AM
hi guys,
I was wondering what should I edit and how, to have vertical child boards listing, in two colums. I hope someone can help me out. ^^
Title: Re: Reseller
Post by: HRM on December 26, 2014, 08:33:49 AM
Quote from: HRM on December 26, 2014, 06:09:38 AM
have it running quite smooth lately.
Only Youtube video do not resize on portal or posts so in mobile doesnt look too good. Screenshot attached.

I do realize its youtube sending dimensions, as its not in Simple Video Embedder either,  but is there a way to overule this in the reseller theme?

Thanks in advance.

PLease ignore me.  I had installed version 1.1. of Simple Audio Video Embedder instead of 3.1 !   :-[
Must have drunk too much yesterday. :laugh:

Happy Christmas !
Title: Re: Reseller
Post by: n00bmonkey on January 08, 2015, 08:53:51 PM
Hi Daniiel,

I installed this theme, and it's a big hit! I have a few questions if you have the time to answer.

When you look at the theme in portrait on a phone, it only shows board names and removes 'replies' and 'last post'... Is it possible to apply this effect to 'recent posts' section in the info center?
Basically only show recent post titles that are on the left, and not date and time on the right side. It tries to show everything now and gets jumbles on phones.

Also, when it is in portrait, is it possible to drop the avatar from showing altogether and have just the green nametag?

Thank you!
Title: Re: Reseller
Post by: n00bmonkey on January 09, 2015, 01:39:03 PM
Figured out how to remove avatars in portrait. LOL everybody probably knows, but I'll add anyway.

Find:
.poster li.avatar
{
overflow: hidden;
padding: 0;
}


Add this below it:


@media (max-width: 992px)
{
.poster li.avatar
{
display: none;
}
}


Still trying to figure out the Recent Posts scaling.
Title: Re: Reseller
Post by: tranhiep_116 on January 10, 2015, 04:49:44 AM
that good. I will contact you soon
Title: Re: Reseller
Post by: Kornak on January 15, 2015, 12:26:20 AM
I find mini bug and fix it

in index.template.php find
<input name="cookielength" type="checkbox" value="-1" /> Recuerdame

replace
<input name="cookielength" type="checkbox" value="-1" /> ', $txt['always_logged_in'] ,'
Title: Re: Reseller
Post by: tabu11 on January 19, 2015, 01:55:20 PM
perfect themes... thanks....
Title: Re: Reseller
Post by: Reptil on January 27, 2015, 04:15:57 AM
Hi and thanks for that great theme :) I have a question please, the upper menu bar buttons (home, forum, profile etc) with submenu dont work with links; the links inside it works, but not the url link from a 1st level button..
Title: Re: Reseller
Post by: motosimak on January 30, 2015, 03:03:35 AM
Hi!

How to make a button in a row, as are placed by default in the templates smf?

Quote Modify Remove and more.

Ideally, replace the dropdown menu is a button.

Please help)
Title: Re: Reseller
Post by: hitsme on February 01, 2015, 02:05:40 AM
what's the recommended size of a logo?
Title: Re: Reseller
Post by: hitsme on February 01, 2015, 08:23:31 AM
How to make that when
when viewing from a mobile device & the menu is expanded it should collapse when scrolling down
TIA
Title: Re: Reseller
Post by: hitsme on February 03, 2015, 02:29:22 PM
i like your theme, but a few things i need help with
TIA
Title: Re: Reseller
Post by: hitsme on February 03, 2015, 03:00:42 PM
Quote from: n00bmonkey on January 09, 2015, 01:39:03 PM
Figured out how to remove avatars in portrait. LOL everybody probably knows, but I'll add anyway.
[/code]
thanks,
but the small icons sticky etc, also jump away any solution?
Quote from: hitsme on February 03, 2015, 02:29:22 PM
custom profile if its with icon, the background and the text are black, attached is blue when selected
TIA
I added to
.poster ul ul
{
margin: 0;
padding: 5px 0;
border: none;
border-radius: 0 0 0 0;
background: #3a3a3a;
}


color: #7CFC00
Title: Re: Reseller
Post by: hitsme on February 03, 2015, 03:33:19 PM
in (ctrl shift i) Developer tools if i uncheck max-width it shows normal, i don't want to play around with something i'm not familiar, can someone guide me i don't want to ruin all images,

img {
max-width: 100%;
height: auto;
}
Title: Re: Reseller
Post by: hitsme on February 08, 2015, 10:33:37 PM
Quote from: hitsme on February 03, 2015, 02:29:22 PM
the images of read & unread are very similar, sometimes its hard to tell a difference, i wouldn't mind it should be a different color
changed on.png to attached
Title: Re: Reseller
Post by: jlee620 on February 14, 2015, 03:30:01 PM
How do I change the default font size for posts? I see alot of font settings in the index.css ... superb theme by the way.
Title: Re: Reseller
Post by: Mortissimov on February 14, 2015, 03:48:49 PM
Quote from: jlee620 on February 14, 2015, 03:30:01 PM
How do I change the default font size for posts? I see alot of font settings in the index.css ... superb theme by the way.

Update your index.css with:
.post
{
margin-top: 0.5em;
clear: right;
        font-size: EXAMPLEpx;
}


or

.inner
{
padding: 1em 0 ;
margin: 0;
border-top: 1px solid #CCC;
        font-size: EXAMPLEpx;
}
Title: Re: Reseller
Post by: motosimak on March 02, 2015, 04:17:10 AM
How can I adapt the template for the mobile version , according to the rules of Google ?
https://developers.google.com/speed/pagespeed/insights/?hl=ru&url=knowpc.ru (Interested section user experience)




Title: Re: Reseller
Post by: motosimak on March 05, 2015, 05:52:59 AM
found a solution:
themes/default/css/portal.css

Find:
body
{
   min-width: 750px;
}

Replace:
body
{
   min-width: device-width;
}

Title: Re: Reseller
Post by: ensarman on March 23, 2015, 05:07:37 PM
hello, I want to put a standalone reply button apart from the "+" menu... to use it in PC and to be easier to reply.
Title: Re: Reseller
Post by: Huberrrt on March 26, 2015, 12:03:26 PM
I have huge problem. I am using Reseller theme on my forum and I can't figure out how to add textual info about user rank. I would like to have this info displaying under the graphic info "stars". Please help me, I'll be very thankful.
Title: Re: Reseller
Post by: SimpleJoe on April 22, 2015, 11:37:22 AM
Hi great theme, but I have found a bug. When using the Reseller theme with an SSL Certificate (https) the navigational buttons at the top (like admin, profile, etc.) no longer work. Any idea how to fix this?

thanks,
Joseph
Title: Re: Reseller
Post by: peterwaalker on April 29, 2015, 07:44:20 AM
This is owsome theme I must confess.
Please how can I install this reseller.zip and logo.psd
Should I upload the two via theme directory uploads. should i upload it ftom upload a theme directory in admin section?
This is my first time and i have never installed a theme that has two files.
Title: Re: Reseller
Post by: peterwaalker on April 29, 2015, 05:43:32 PM
I have installed reseller.zip but do not know what to do with psd-logo.zip yet.
From what i can see from here the theme is so fine.
I am only wondering if there should be a way i can make most of my mods to work with this theme.
Mods like Registered Links, Ad Managment 3.0.1, Footer Menu v.1, PM to New Members,  Board Icons    1.0 , SMFPacks Shoutbox 1.0.4, FixCopy by nikanweb.tk, Like Posts, etc. Some other mods worked peacefully.
Thank you
Title: Re: Reseller
Post by: peterwaalker on April 30, 2015, 11:31:45 PM
How can I make user profile avatar on post page to show custom names,  admin or moderator or VIP and other level acquired from post counts. All are not displaying. You can not tell who is administrator or moderator etc.
Please help
Title: Re: Reseller
Post by: hitsme on May 01, 2015, 02:13:58 AM
find in Display.template.php
     
// Show the member's custom title, if they have one.
if (!empty($message['member']['title']))
echo '
<li class="title">', $message['member']['title'], '</li>';

Add after:

   

// Show the member's primary group (like 'Administrator') if they have one.
if (!empty($message['member']['group']))
echo '
<li class="membergroup">', $message['member']['group'], '</li>';

Search:

   

      // Show the stars if they are not in a group.
echo '
<li class="stars">', $message['member']['group_stars'], '</li>';

Add before:

     

   // Show the post group if and only if they have no other group or the option is on, and they are in a post group.
if ((empty($settings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '')
echo '
<li class="postgroup">', $message['member']['post_group'], '</li>';
Title: Re: Reseller
Post by: peterwaalker on May 01, 2015, 03:51:36 AM
@hitsme, thanks a lot. Let me check and get back to you.
Title: Re: Reseller
Post by: peterwaalker on May 01, 2015, 04:03:00 PM
Worked greatly. Excellent... Splendid
Thank you @hits me. the user post_avatar field is now wonderful.
Title: Re: Reseller
Post by: peterwaalker on May 02, 2015, 01:00:33 AM
two more things i want you to help me on.
Please i want

1. On user profile, how can i add things like the below on the user ?

    Hello, peterwaalker
    Profile
    2 New message, out of 68
    Show unread posts since last visit.
    Show new replies to your posts.
    May 01, 2015, 05:40:12 PM

See how it is currently displaying on my forum below
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fwww.upload.ee%2Fimage%2F4699043%2Fprofilepic.PNG&hash=0c6e92fc3ec5d7daf4ded29f78dd9a6c7dd67bf0)



2. How can i make the links on the post page blue? All links on the post-pages are grey colours same with texts. I cannot distinguish texts from links. It makes posted messages poor in reading.



3. User online does not show time and date
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fwww.upload.ee%2Fimage%2F4699042%2Fusersonline.PNG&hash=9456ee67f13564bd1017f951f8c08d93c1c0481e)



Thank you for your support. I appreciate
Title: Re: Reseller
Post by: Gluz on May 03, 2015, 08:22:15 PM
1.- In /Themes/Reseller/index.template.php search:
if ($context['user']['is_logged'])
{
if (!empty($context['user']['avatar']))
echo '
<img src="', $context['user']['avatar']['href'], '" class="avatar img-thumbnail" alt="*" />';
echo'
<ul class="reset">
<li class="user">', $context['user']['name'], '</li>
<li><a href="', $scripturl, '?action=profile">', $txt['profile'], '</a></li>
<li><a href="', $scripturl, '?action=profile;area=forumprofile">', $txt['forumprofile'], '</a></li>
<li><a href="', $scripturl, '?action=unread">', $txt['unread_topics_visit'], '</a></li>
<li><a href="', $scripturl, '?action=unreadreplies">', $txt['unread_replies'], '</a></li>';
                echo '
</ul>';
}


and replace for:
if ($context['user']['is_logged'])
{
if (!empty($context['user']['avatar']))
echo '
<img src="', $context['user']['avatar']['href'], '" class="avatar img-thumbnail" alt="*" />';
echo'
<ul class="reset">
<li class="user">', $txt['hello_member'], ' <b>', $context['user']['name'], '</b></li>
<li><a href="', $scripturl, '?action=profile">', $txt['profile'], '</a></li>
<li><a href="', $scripturl, '?action=pm">', $context['user']['messages'], ' ', ($context['user']['messages'] != 1 ? $txt['msg_alert_messages'] : $txt['message_lowercase']), '</a>, ', $context['user']['unread_messages'], ' ', ($context['user']['unread_messages'] == 1 ? $txt['newmessages0'] : $txt['newmessages1']), '.</li>
<li><a href="', $scripturl, '?action=unread">', $txt['unread_since_visit'], '</a></li>
<li><a href="', $scripturl, '?action=unreadreplies">', $txt['show_unread_replies'], '</a></li>';
                echo '
</ul>';
}


I didn't add the date 'cause that requires an extra query afaik, but this should be what you want.


2.- Links in the post or links in general in the layout?

To change links in the post:
In /Themes/Reseller/css/index.css search the section of bbc_link and repalce for:
.bbc_link:link, .bbc_link:visited {
    border-bottom: 1px solid #0000FF;
    color: #0000FF;
}


For links in general, at the very beginning of the index.css file change just the color of the links with:
a:link, a:visited
{
color: #0000FF;


You can change the exact color(#0000FF what I suggest) for the HEX RGB color that you want.

3.- As others said, maybe another MOD screw up with the layout there...
Title: Re: Reseller
Post by: peterwaalker on May 04, 2015, 05:39:23 AM
Quote from: Gluz on May 03, 2015, 08:22:15 PM
1.- In /Themes/Reseller/index.template.php search:
if ($context['user']['is_logged'])
{
if (!empty($context['user']['avatar']))
echo '
<img src="', $context['user']['avatar']['href'], '" class="avatar img-thumbnail" alt="*" />';
echo'
<ul class="reset">
<li class="user">', $context['user']['name'], '</li>
<li><a href="', $scripturl, '?action=profile">', $txt['profile'], '</a></li>
<li><a href="', $scripturl, '?action=profile;area=forumprofile">', $txt['forumprofile'], '</a></li>
<li><a href="', $scripturl, '?action=unread">', $txt['unread_topics_visit'], '</a></li>
<li><a href="', $scripturl, '?action=unreadreplies">', $txt['unread_replies'], '</a></li>';
                echo '
</ul>';
}


and replace for:
if ($context['user']['is_logged'])
{
if (!empty($context['user']['avatar']))
echo '
<img src="', $context['user']['avatar']['href'], '" class="avatar img-thumbnail" alt="*" />';
echo'
<ul class="reset">
<li class="user">', $txt['hello_member'], ' <b>', $context['user']['name'], '</b></li>
<li><a href="', $scripturl, '?action=profile">', $txt['profile'], '</a></li>
<li><a href="', $scripturl, '?action=pm">', $context['user']['messages'], ' ', ($context['user']['messages'] != 1 ? $txt['msg_alert_messages'] : $txt['message_lowercase']), '</a>, ', $context['user']['unread_messages'], ' ', ($context['user']['unread_messages'] == 1 ? $txt['newmessages0'] : $txt['newmessages1']), '.</li>
<li><a href="', $scripturl, '?action=unread">', $txt['unread_since_visit'], '</a></li>
<li><a href="', $scripturl, '?action=unreadreplies">', $txt['show_unread_replies'], '</a></li>';
                echo '
</ul>';
}


I didn't add the date 'cause that requires an extra query afaik, but this should be what you want.


2.- Links in the post or links in general in the layout?

To change links in the post:
In /Themes/Reseller/css/index.css search the section of bbc_link and repalce for:
.bbc_link:link, .bbc_link:visited {
    border-bottom: 1px solid #0000FF;
    color: #0000FF;
}


For links in general, at the very beginning of the index.css file change just the color of the links with:
a:link, a:visited
{
color: #0000FF;


You can change the exact color(#0000FF what I suggest) for the HEX RGB color that you want.

3.- As others said, maybe another MOD screw up with the layout there...



It worked again like charm. Infact you are good. Thank you for helping me.

3. - As for the unknown mod that screw up users online, I do not know how to retrace my steps so as to find out the actual mod in question.
4. - How can I change the body background color to blue. I'm done with the Nav bar, header, body?, and footer area.
Title: Re: Reseller
Post by: peterwaalker on May 05, 2015, 03:54:15 PM
4. schematic Picture attachment

5. How to include again the search box below the header see attachment number two
Title: Re: Reseller
Post by: peterwaalker on May 06, 2015, 08:18:03 AM
For background color I think I should be looking for this code below but does not know the actual CSS file in reseller CSS folder.

/* The main body of the entire forum. */
body
{
    background-color: #E5E5E8;
    margin: 0px;
    padding: 12px 30px 4px 30px;
}


I need help
Title: Re: Reseller
Post by: nattasan on May 12, 2015, 09:48:38 AM
Dear All,

Please tell me how can i move Recent Posts of SMF 2.0.8 at the board index from bottom to the top?

Thank you very much  :)
Title: Re: Reseller
Post by: peterwaalker on May 13, 2015, 08:48:42 PM
Quote from: nattasan on May 12, 2015, 09:48:38 AM
Dear All,

Please tell me how can i move Recent Posts of SMF 2.0.8 at the board index from bottom to the top?

Thank you very much  :)

To move recent post board index from bottom to top just install a mod can do.
There is no need waiting for support here. If you encounter any error during installation, ask questions in the mods support area.
Visit this link: http://custom.simplemachines.org/mods/index.php?mod=1081
Title: Re: Reseller
Post by: babalola olasehinde on May 22, 2015, 02:24:50 AM
thanks for this theme , i have gone through page one to the last to implement some of the things said how 2 questions i have are

1. how can only replace that ? mark avatar with a new avatar which would serve as default


2. on the footer  where we have facebook icon , twitter icon etc , there is a grey colour background there that is not making the facebook and other to be clear , how can that be modify so everyone can see the facebook easily?
Title: Re: Reseller
Post by: Gluz on May 23, 2015, 12:07:53 AM
The ? is an image, to change, replace the image in /Themes/Reseller/images/noavatar.png

The footer color is in /Themes/Reseller/css/reseller.css
Search for:
footer
{
margin-top: 20px;
background: #34495e;


and replace the background color for the color you want.

For my site, I remove that line, so the footer is the same color as the forum background.
Title: Re: Reseller
Post by: babalola olasehinde on May 23, 2015, 09:20:52 AM
@Gluz thanks it worked

pls see the screenshot below and tell where i can see the file to edit , i need to change the colour in the index page
Title: Re: Reseller
Post by: babalola olasehinde on May 23, 2015, 12:49:26 PM
how can one reduce the font and font size of a new thread ( i.e new topic) ? its always too big both for pc and mobile user

also how can one reduce the 'reply' and 'view' images ( i.e the eye) of a thread ? its always too large
Title: Re: Reseller
Post by: ameo on May 23, 2015, 03:16:08 PM
you could just remove reply and view images, instead - in Display.template.php edit to:

   // Show the topic information - icon, subject, etc.
   echo '
         <div id="forumposts">
            <div class="display-info">
               <h1 class="animated slideInDown">
                  ', $context['subject'], '
               </h1>
               <ul class="reset info navbar-right">
                  <li class="replies"> '. $context['real_num_replies'] .' '. $txt['replies'] .'</li>   
                  <li class="amp">&nbsp;&</li>         
                  <li class="views"> '. $context['num_views'], ' '. $txt['views'] .'</li>
               </ul>
            <>';




That background color is so nice, but oh, if you really wanna change it in index.css of your theme find:
background-color: #eee;    and change to your hex value


If you think that TITLE of your thread is too big (I hope that's what you think,coz it's unclear to me),
go to reseller.css and find

font-size: 36px;

& change to smaller number.
Title: Re: Reseller
Post by: Xpresskonami on May 28, 2015, 03:30:58 PM
This topic helps a lot !!!!!

Please how can I make the "profile , Forum profile, Recent unread Topic & Unread topic" at the header to be in Horizontal I don't want it to be in vertical.

Title: Re: Reseller
Post by: Xpresskonami on May 29, 2015, 06:04:14 AM
Am still waiting for reply please!!!!!!!!!
Title: Re: Reseller
Post by: ameo on May 29, 2015, 12:38:15 PM
your picture has 0 kb, you did something wrong.
also, you should try asking in developers forum support page about that,
since it looks like he doesn't come here often: http://smftricks.com/index.php?board=40.0

btw. your logo is hideous. brown/beige background is a serious no no on this colorscheme. sorry, but it's true.
Title: Re: Reseller
Post by: Xpresskonami on May 31, 2015, 04:54:08 AM
Whenever am trying to install new mods. It did not go into Themes/Reseller/Display.templates.php

It only go to Themes/default/Display.template.php

What is the solution to that????????
Title: Re: Reseller
Post by: Xpresskonami on May 31, 2015, 10:15:26 AM
Quote from: Xpresskonami on May 31, 2015, 04:54:08 AM
Whenever am trying to install new mods. It did not go into Themes/Reseller/Display.templates.php

It only go to Themes/default/Display.template.php

What is the solution to that????????

Still waiting for reply please!!!!!
Title: Re: Reseller
Post by: ameo on June 01, 2015, 04:42:05 PM
well, what mod are you trying to install?
can't you edit manually?
Title: Re: Reseller
Post by: JoeK on June 01, 2015, 08:08:26 PM
Hello,  how I can use latin extended font?  In default set, some characters are bold. Thank you
Title: Re: Reseller
Post by: Xpresskonami on June 06, 2015, 07:17:46 AM
How can I do this on my Reseller theme. I won't the Edge to Curve like the PC1 attachment I share.

PC2 attachment is the Reseller theme am using Right now!


Am trying to add a img background to the Reseller Theme Body. So if I add it. It cover up all the site pages. So am trying to separate the wrapper from the body so I can add the image to the background!

So where "Collpase Collapse" is shown in my PC2 attachment! I want it to curve as PC 1 attachment

Title: Re: Reseller
Post by: Xpresskonami on June 06, 2015, 09:16:16 AM
Am waiting for reply please!
Title: Re: Reseller
Post by: Xpresskonami on June 06, 2015, 03:11:02 PM
Still waiting for the reply
Title: Re: Reseller
Post by: Shambles on June 06, 2015, 03:52:42 PM
You won't make any friends bumping your query like this  :-\
Title: Re: Reseller
Post by: Xpresskonami on June 07, 2015, 02:25:11 AM
Quote from: Shambles on June 06, 2015, 03:52:42 PM
You won't make any friends bumping your query like this  :-\

How please?????
Title: Re: Reseller
Post by: ocbland4 on June 07, 2015, 04:51:02 AM
beautyful theme
Title: Re: Reseller
Post by: Xpresskonami on June 07, 2015, 06:15:05 AM
Quote from: ocbland4 on June 07, 2015, 04:51:02 AM
beautyful theme

Yes am trying to beautify the theme.
Title: Re: Reseller
Post by: ameo on June 07, 2015, 06:25:23 AM
I've already told you, but you're not listening, Xpresskonami, because you don't reply in normal ways, or don't reply at all.

For all your problems it would be the best to adress coder who made this theme, on his own web forum, which he has here:
http://smftricks.com/index.php?board=40.0

Register there and ask him. If you didn't remove his copyright from theme!!!, you'd know his name is Daniel, and you'd know that smftricks is the page to go.

Besides that, putting the background image wouldn't do much harm to theme layout, since it's only gray area that would be covered, and posts are wrapped in white boxes.
Title: Re: Reseller
Post by: Xpresskonami on June 12, 2015, 10:06:51 AM
non of them reply me. please mr daniel need urgent reply
Title: Re: Reseller
Post by: strano on June 16, 2015, 06:32:23 AM
Quote from: Daniiel on July 31, 2014, 05:02:25 PM
Quote from: r4ll on July 30, 2014, 11:22:06 PM
Is there any way to add effects (like hover) to the menu bar when it is going up or down just like wpcentral.com

Thanks  :)

Index.template.php
Search:
<script type="text/javascript">
$(document).ready(function(){
$("input[type=button]").attr("class", "btn btn-default btn-sm");
$(".button_submit").attr("class", "btn btn-primary btn-sm");
$("#advanced_search input[type=\'text\'], #search_term_input input[type=\'text\']").removeAttr("size");
$(".table_grid").attr("class", "table table-striped");
$("img[alt=\'', $txt['new'], '\'], img.new_posts").replaceWith("<span class=\'label label-warning\'>', $txt['new'], '</span>");
$("#profile_success").removeAttr("id").removeClass("windowbg").addClass("alert alert-success");
$("#profile_error").removeAttr("id").removeClass("windowbg").addClass("alert alert-danger");
});
</script>


Replace with:
<script type="text/javascript">
$(document).ready(function(){
var previousScroll = 0, headerOrgOffset = $("nav").height();
$(window).scroll(function () {
    var currentScroll = $(this).scrollTop();
    if (currentScroll > headerOrgOffset) {
        if (currentScroll > previousScroll) {
            $("nav").fadeOut();
        } else {
            $("nav").fadeIn();
        }
    } else {
            $("nav").fadeIn();
    }
    previousScroll = currentScroll;
});
$("input[type=button]").attr("class", "btn btn-default btn-sm");
$(".button_submit").attr("class", "btn btn-primary btn-sm");
$("#advanced_search input[type=\'text\'], #search_term_input input[type=\'text\']").removeAttr("size");
$(".table_grid").attr("class", "table table-striped");
$("img[alt=\'', $txt['new'], '\'], img.new_posts").replaceWith("<span class=\'label label-warning\'>', $txt['new'], '</span>");
$("#profile_success").removeAttr("id").removeClass("windowbg").addClass("alert alert-success");
$("#profile_error").removeAttr("id").removeClass("windowbg").addClass("alert alert-danger");
});
</script>




Quote from: r4ll on July 31, 2014, 01:55:15 PM
Can you tell the name of font used in logo  ;D

The name of the font is "Intro"

hi, if i use this code, i've a JS error when i declare headerOrgOffset.
TypeErroor: $ is not a function

can anyone help me?
Title: Re: Reseller
Post by: MarkoKg on June 30, 2015, 08:48:02 PM
Thanks for a great theme!

Anyway, is there a way to use "classic" buttons instead of the plus "+" button inside topic list? I tried to find a code for it inside Display.template.php, but looks like the plus button is purely css?

Thanks.
Title: Re: Reseller
Post by: Xpresskonami on July 09, 2015, 04:24:57 AM
Please am using Simple portal mod in Reseller Themes. And in the board news updates of the SP. Whenever I make a post using BBC of (//) the image always heavy and makes my website to load slow. Is there anyway I can reduce it to 300px width and 300 height. May be by css or any other method!
Title: Re: Reseller
Post by: Crank! on July 09, 2015, 10:32:22 AM
I dont know anything about this kind of stuff. I need to change the logo to say
uberXperts
Helping each other uber on

How can I do that?

Thanks
Title: Re: Reseller
Post by: margarett on July 09, 2015, 02:34:22 PM
First you need a the logo itself... Do you have a logo?
Title: Re: Reseller
Post by: Crank! on July 10, 2015, 09:15:52 AM
I thought I could just change the letters to say what I want it to say.
Title: Re: Reseller
Post by: alple on July 21, 2015, 07:10:47 AM
Thanks for the theme!
It's useful for mobile devices, but I have a problem with it. I could not edit posts. The button "edit" works fine, but when I press "save edited post", I am simply redirected to the first message of the thread.
I have modified the theme a little — but I do not think, that it should be related.

Here is the button code:
<input type="submit" name="post" value="Сохранить" tabindex="6" onclick="return oQuickModify.modifySave('ed93661457fef4bed5eb45dcfd7a1c0a', 'fdebc89fec03');" accesskey="s" class="button_submit">

What should I do?
Title: Re: Reseller
Post by: margarett on July 21, 2015, 07:44:41 AM
Hi and welcome to sm.org

I would suggest that this is not related to the theme. It suggests an issue with mod_security. Can you try it with SMF's default theme?
Can you ask your host if mod_security is installed and, if so, if they can disable it for you? (even if just temporarily, for debug)
Title: Re: Reseller
Post by: alple on July 21, 2015, 08:06:42 AM
Quotewelcome to sm.org
Thanks!

No, there no problems with default theme; editing does not work in Reseller only.
Should I still ask host about mod_security?
Title: Re: Reseller
Post by: margarett on July 21, 2015, 09:17:45 AM
It wouldn't hurt. But if it works with default theme then it should be related to this.

I would advise you to backup your "Reseller" folder (inside Themes) and replace it with a fresh copy of the theme, just to be sure if your edits are the cause or not.
Title: Re: Reseller
Post by: alple on July 21, 2015, 10:58:55 AM
Yes, it's true, the original Reseller works.
So the problem is really in the interface between the keyboard and the chair, and I'll try to fix it somehow, :-).
Title: Re: Reseller
Post by: Xpresskonami on July 22, 2015, 04:55:28 PM
Am trying to place ads in my smf. So I install the mod "Ad manager" , after install the mod. I input my ads code into the Ad manager. But the ads are not displaying on "Reseller Themes" but it display in other themes. Help please.
Title: Re: Reseller
Post by: ⓜⓤⓡⓐⓣ on August 27, 2015, 10:21:29 AM
Hello;
Can you help me?
I want to use only mobile menu. How can I do?
Thank you....
Title: Re: Reseller
Post by: hispanomc on September 01, 2015, 06:22:45 AM
Hello,

Can anyone help me a bit?

If possible i would like the "login" right button to link with the login page instead of opening the "login popup" as i have a mod for social login and it is only possible to do the social login from the login page and not from the popup

I will attach a couple of images to illustrate

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi58.tinypic.com%2F15drp54.png&hash=e3464a82ca46a8fb3b32de73f4f39d8d49058c2c)

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi58.tinypic.com%2F317axpd.png&hash=de98e7381cedfe852d49769b033cdc4f816d11ee)

Title: Re: Reseller
Post by: Gvidas on September 02, 2015, 04:37:57 PM
How to make col-md-2 (User info) to float on left side (on mobile devices), I mean like on this forum. BTW thank you for this awesome theme. Nice job!
Title: Re: Reseller
Post by: Gvidas on September 03, 2015, 05:17:54 AM
Ok i made it myself - in bootstrap.css I deleted:
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

And in that position wrote this:
.col-md-2{
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float:left;
}


It worked:) hope this helps for others who want something like this.
Title: Re: Reseller
Post by: The Asian on September 11, 2015, 07:33:26 PM
Hi, I have two issues.

When looking at the avatars on mobile they take up the majority of the screen, and I don't know much about mobile design besides resizing pages.

Also, I would like to resize the portal itself so the sidebars go further towards the edge of the page, reason being the articles are constricted in the middle.

colosseum-gaming.com

Thanks,

The Asian
Title: Re: Reseller
Post by: The Asian on September 12, 2015, 02:38:01 AM
Forget my last post,

What I need is removing the replies and viewed icons (the message bubble and eye images)
Title: Re: Reseller
Post by: ⓜⓤⓡⓐⓣ on September 15, 2015, 02:03:14 AM
Hello everyone; It's a problem when you turn on the mobile phone.
Automatically it grows when the page is first opened. Every page refresh automatically display zoom.
How can I prevent it.
Thank you to everyone who helped .. My Site:http://www.pcdmisforum.org
Title: Re: Reseller
Post by: peterwaalker on September 18, 2015, 04:34:37 AM
How can I make pages on my theme look better like this one in the box
(//)
Title: Re: Reseller
Post by: adiboy on September 18, 2015, 03:08:11 PM
HHHMMM.... Need help plase!!

THe avater in mobile view is making discussion seldom. How can i remove the avater from displaying in mobile view?
I want to display only the display name and membergroup instead of avater. Help please
Title: Re: Reseller
Post by: Gluz on September 18, 2015, 07:07:46 PM
Quote from: peterwaalker on September 18, 2015, 04:34:37 AM
How can I make pages on my theme look better like this one in the box
(//)
At the end of index.css put something like this (change the colors as you want):
.pagelinks > strong {
    border: 1px solid #739CFF;
    padding: 2px 5px;
    background-color: #C2EEFF;
}
.pagelinks a {
    padding: 2px 5px;
    border: 1px solid #739CFF;
}
.pagelinks a:hover {
    background-color: #C2EEFF;
}
Title: Re: Reseller
Post by: The Asian on September 21, 2015, 09:59:31 PM
Quote from: ensarman on March 23, 2015, 05:07:37 PM
hello, I want to put a standalone reply button apart from the "+" menu... to use it in PC and to be easier to reply.

Bump
Title: Re: Reseller
Post by: Gluz on September 22, 2015, 07:25:13 AM
Quote from: The Asian on September 21, 2015, 09:59:31 PM
Quote from: ensarman on March 23, 2015, 05:07:37 PM
hello, I want to put a standalone reply button apart from the "+" menu... to use it in PC and to be easier to reply.

Bump
I have modified that part to have all the buttons in big screens, and the normal style menu in small screens, but it needs some template and css edits.

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fpuu.sh%2Fkk5Wa.png&hash=7b08af8ef977a88f7df9d18059c2f6b52f4855d1)
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fpuu.sh%2Fkk5UI.png&hash=08a6514b2e8720edbb3a18734ed27d8f71abe26b)

If you attach this files form your theme I can edit them for you, as I don't remember the exact changes, but can do a comparison between files.

-index.template.php
-index.css
-Display.template.php
Title: Re: Reseller
Post by: adiboy on September 22, 2015, 07:48:46 PM
PLease Help me.. I am new to SMF and my former problems were not solved. Help me solve this two plese.

1.   How do i create a block that will display on mobile only? I dont want some blocks created via SP on reseller to appear on PC but mobile only.

2.   How do i remove avater in post on mobile and display only name?
Title: Re: Reseller
Post by: peterwaalker on September 22, 2015, 08:07:12 PM
Quote from: Gluz on September 18, 2015, 07:07:46 PM
Quote from: peterwaalker on September 18, 2015, 04:34:37 AM
How can I make pages on my theme look better like this one in the box
(//)
At the end of index.css put something like this (change the colors as you want):
.pagelinks > strong {
    border: 1px solid #739CFF;
    padding: 2px 5px;
    background-color: #C2EEFF;
}
.pagelinks a {
    padding: 2px 5px;
    border: 1px solid #739CFF;
}
.pagelinks a:hover {
    background-color: #C2EEFF;
}


I remain ever thankful for your good works. Thanks as always.

There is something left, i couldn't see Go Down button and Go Up It should Show Go Down when you have reached up the page and Go Up when yu have reached down the page
(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=244561;image)
Title: Re: Reseller
Post by: STRONGHOLD on September 23, 2015, 08:54:33 AM
Hello All,

First of all, thanks for this beautiful theme.

In my website the buttons (reply, add pool etc.) doesnt seem when i click the "+" button.
I attached the problem.

Can you please help me? What should i edit ?
Title: Re: Reseller
Post by: Xpresskonami on October 09, 2015, 04:09:07 PM
in my reseller themes, am trying to add External Links to the Menu, e.g "HOME, FORUM, HELP".... so I want to add a link to it e.g "HOME, NEWS, MUSIC, FORUM, HELP
please how can I edit the menu????
Title: Re: Reseller
Post by: margarett on October 09, 2015, 07:25:37 PM
How do I add buttons to SMF 2.0? (http://wiki.simplemachines.org/smf/How_do_I_add_buttons_to_SMF_2.0)
Title: Re: Reseller
Post by: Xpresskonami on October 10, 2015, 03:30:46 AM
Quote from: Xpresskonami on October 09, 2015, 04:09:07 PM
in my reseller themes, am trying to add External Links to the Menu, e.g "HOME, FORUM, HELP".... so I want to add a link to it e.g "HOME, NEWS, MUSIC, FORUM, HELP
please how can I edit the menu????

in my reseller themes, am trying to add External Links to the Menu, e.g "HOME, FORUM, HELP".... so I want to add a link to it e.g "HOME, NEWS, MUSIC, FORUM, HELP
please how can I edit the menu????
Title: Re: Reseller
Post by: Piilot on October 19, 2015, 08:00:51 AM
Hello all!

Thanks for this awesome theme!

Just one problem: The big blue bar, next to the logo, I can not edit the colour? I'm uncertain where I edit this?

Also, where do I edit the button colours at the top?

In addition, how would I go about editing the colours of the 'Login' and 'Register' buttons?
Title: Re: Reseller
Post by: peterwaalker on October 25, 2015, 04:29:39 PM
Quote from: Xpresskonami on October 10, 2015, 03:30:46 AM
Quote from: Xpresskonami on October 09, 2015, 04:09:07 PM
in my reseller themes, am trying to add External Links to the Menu, e.g "HOME, FORUM, HELP".... so I want to add a link to it e.g "HOME, NEWS, MUSIC, FORUM, HELP
please how can I edit the menu????

in my reseller themes, am trying to add External Links to the Menu, e.g "HOME, FORUM, HELP".... so I want to add a link to it e.g "HOME, NEWS, MUSIC, FORUM, HELP
please how can I edit the menu????

Let me start by solving your own problem because it is simple and straight without hassles.
Just install a mod called Adk Menu Buttons
After installation log in to your admin panel and insert the links of the pages you have already created. In case you have not created any page at all just install this mod called Custom Action
Goodluck!!
Regards,
Waalker.
Title: Re: Reseller
Post by: peterwaalker on October 25, 2015, 04:49:19 PM
Please how do i edit my theme software to make something like what i attached below.
Thank you!

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=245068)

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=245070)
Title: Re: Reseller
Post by: shafideaf on October 30, 2015, 05:58:03 AM
i installed it but mobile not good because when i post any topic then show large size avatar! i want small avatar with post in mobile site
Title: Re: Reseller
Post by: adiboy on November 09, 2015, 02:05:23 PM
I hate every Admin of this forum...

You always look at set of people to reply. Why dont you give reply to everyone? I have never for once get a solution to my questions here. Instead, i get them from other links online.

Check my site.... Reseller is really ******ing up, its showing just one post in the board news... What could be the problem?
Title: Re: Reseller
Post by: margarett on November 09, 2015, 05:07:12 PM
Themes (and MODs) support is mostly performed by their respective authors. Many people (like myself :P ) really suck at theming so we can't also help much in this context.

I'm sorry if you don't get the help you need and expect, but attitude won't make it any better. You have 3 previous posts and you had 2 replies in the SP question, so it's just the issues with this theme.

QuoteCheck my site...
If only we knew which is your site's URL... ::)

At this point, considering the amount if issues you had with Reseller (the enormous amount of 2), my best suggestion is to try another theme. Alternatively, I'm sorry but you can only wait until someone can help you with the issues you still have. Feel free to bump your posts every now and then ;)
Title: Re: Reseller
Post by: Gluz on November 09, 2015, 06:54:42 PM
Quote from: adiboy on November 09, 2015, 02:05:23 PM
... I have never for once get a solution to my questions here...
I gave you a reply in the SimplePortal block thing, also one of the SimplePortal guys responded with a link to their site with the answer to your question.


Quote from: margarett on November 09, 2015, 05:07:12 PM
QuoteCheck my site...
If only we knew which is your site's URL... ::)
And have a more detailed explanation on what happens in your forum. Also it helps us to help you if you can test with the default theme if that issue is happening there too, if not, then it's something in the Reseller theme, maybe something you try to modify?
Title: Re: Reseller
Post by: adiboy on November 10, 2015, 11:38:22 AM
I am sorry if i have wrong you with my attitude. Kindly forgive. So can i ask one more question about the reseller theme?
Title: Re: Reseller
Post by: margarett on November 10, 2015, 12:05:05 PM
Sure you can ;)

But please, take some time to explain your issue properly. Write a lot. Use some printscreens (attach them to the post), maybe even use Paint ( :P ) to edit the printscreen and show exactly what's wrong or what you'd like to modify.
Title: Re: Reseller
Post by: adiboy on November 10, 2015, 02:48:30 PM
Thank you alot Margarett... I appreciate your kindness to me.

The issues i am currently facing are
1. the big avater in mobile view. I don't like the big avater, it is too big and i want it to be small. Though i like the size of avater when view using computer. It is not too big on pc view but too big on mobile.  Screen.jpg attached

2. How can i make my board news a list pattern like in the board.jpg attachment

(https://dl.dropbox.com/s/tlup03528h5bo5m/SCREEN%20EDIT.jpg?dl=0)
(https://dl.dropbox.com/s/vbjup3mnlm8oa69/BOARD.jpg?dl=0)
Title: Re: Reseller
Post by: margarett on November 10, 2015, 05:57:09 PM
The second issue needs to be checked in SimplePortal (support topic or their site). You need to recode that block to show just the subject with a link instead of the content it has now.

About the avatar, it looks like a genuine bug... :(

In index.css you find this:
.poster li.avatar img
{
   width: 50%;
}

Change width to max-width, eg:
.poster li.avatar img
{
   max-width: 50%;
}


edit: see what I meant? perfect description, easier to answer ;)
Title: Re: Reseller
Post by: Gluz on November 10, 2015, 06:54:46 PM
The avatar it's how the Theme is, and I don't like it at all, because in a tablet the avatar is really huge.

I have edited this theme a lot, and the avatar is one of the things I modify, but I can't remember now what I modify in my site, I need to check and compare the css files with the original ones to see where I change the avatar thing to keep it small. When I restart the PC to Windows I'll post the fix to that.
Title: Re: Reseller
Post by: margarett on November 10, 2015, 07:04:08 PM
@Gluz, did you see my post before yours? IMO it's a confusion with width/max-width ;)
Title: Re: Reseller
Post by: Gluz on November 10, 2015, 07:16:30 PM
Oh, yeah, I checked that part, and I deleted completely that rule from the CSS, without it the avatars show the size they are, and if you configure an appropriate size in the admin panel then in mobile view they will show fine, that rule just make the avatar looks bad.
Title: Re: Reseller
Post by: adiboy on November 11, 2015, 07:10:49 AM
Thanks so much Margarett and Gluz............ Let me check the max-width thing

Quote from: margarett on November 10, 2015, 05:57:09 PM
The second issue needs to be checked in SimplePortal (support topic or their site). You need to recode that block to show just the subject with a link instead of the content it has now.

About the avatar, it looks like a genuine bug... :(

In index.css you find this:
.poster li.avatar img
{
   width: 50%;
}

Change width to max-width, eg:
.poster li.avatar img
{
   max-width: 50%;
}


edit: see what I meant? perfect description, easier to answer ;)
Title: Re: Reseller
Post by: Daniiel on November 11, 2015, 10:46:55 AM
Quote from: adiboy on November 11, 2015, 07:10:49 AM
Thanks so much Margarett and Gluz............ Let me check the max-width thing

Quote from: margarett on November 10, 2015, 05:57:09 PM
The second issue needs to be checked in SimplePortal (support topic or their site). You need to recode that block to show just the subject with a link instead of the content it has now.

About the avatar, it looks like a genuine bug... :(

In index.css you find this:
.poster li.avatar img
{
   width: 50%;
}

Change width to max-width, eg:
.poster li.avatar img
{
   max-width: 50%;
}


edit: see what I meant? perfect description, easier to answer ;)
If you only want change the width on mobile view, add to the end (index.css) this:
@media (max-width:991px) {
.poster li.avatar img
{
   max-width: 50%;
}
}

If not, see this: http://www.simplemachines.org/community/index.php?topic=525855.msg3745023#msg3745023
Title: Re: Reseller
Post by: margarett on November 11, 2015, 11:45:00 AM
Oh sorry, I read the whole topic but managed to miss that post :(
Title: Re: Reseller
Post by: adiboy on November 12, 2015, 06:52:22 AM
Thanks so much. It has reduced but a bit still big though... Maybe i'll need a way to show only the Author/Poster Name without Image
Title: Re: Reseller
Post by: peterwaalker on November 12, 2015, 12:34:10 PM
Quote from: peterwaalker on October 25, 2015, 04:49:19 PM
Please how do i edit my theme software to make something like what i attached below.
Thank you!

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=245068)

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=245070)

@Daniiel, Margarett and Gluz could you please help me out. Thanks in advance
Title: Re: Reseller
Post by: margarett on November 12, 2015, 12:44:43 PM
Sorry, that's waaaay beyond my theming skillzzzzzz :P
Title: Re: Reseller
Post by: Daniiel on November 12, 2015, 01:51:53 PM
Quote from: peterwaalker on November 12, 2015, 12:34:10 PM
Quote from: peterwaalker on October 25, 2015, 04:49:19 PM
Please how do i edit my theme software to make something like what i attached below.
Thank you!

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=245068)

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=245070)

@Daniiel, Margarett and Gluz could you please help me out. Thanks in advance
http://custom.simplemachines.org/mods/index.php?mod=3235
Title: Re: Reseller
Post by: Gluz on November 12, 2015, 03:06:32 PM
I think peterwaalker want to get the Reply and New Topic Buttons out of the + dropdown, and that is beyond any template edit, the Buttons there are generated in index.template.php in the template_button_strip fucntion, and to pop out just the Reply or the New Topic need a lot more code than just put all the buttons out in the PC view and keep it in the dropdown menú in mobile view.

I can't figure out how to get only that ones out, need some more love testing and get sure it changes according to the permissions.
Title: Re: Reseller
Post by: peterwaalker on November 21, 2015, 02:22:02 PM
Quote from: Gluz on November 12, 2015, 03:06:32 PM
I think peterwaalker want to get the Reply and New Topic Buttons out of the + dropdown, and that is beyond any template edit, the Buttons there are generated in index.template.php in the template_button_strip fucntion, and to pop out just the Reply or the New Topic need a lot more code than just put all the buttons out in the PC view and keep it in the dropdown menú in mobile view.

I can't figure out how to get only that ones out, need some more love testing and get sure it changes according to the permissions.

okay thanks for your support. I will be patient with you.
Title: Re: Reseller
Post by: Gluz on November 21, 2015, 09:11:56 PM
Well, this is a hackish way to do it.

In index.template.php search:
foreach ($button_strip as $key => $value)
{
if (!isset($value['test']) || !empty($context[$value['test']]))
$buttons[] = '
<li><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span></a></li>';
}


and replace with:
$out_button = array();
foreach ($button_strip as $key => $value)
{
if (!isset($value['test']) || !empty($context[$value['test']]))
if ($key == 'new_topic' || $key == 'reply')
$out_button[] = '
<span><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span></a></span>';
else
$buttons[] = '
<li><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span></a></li>';
}


then search:
echo '
<div class="btn-group', !empty($direction) ? ' navbar-' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '>
<button type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown">
    +
  </button>
<ul class="dropdown-menu" role="menu">',
implode('', $buttons), '
</ul>
</div>';

and replace with:
echo '
<div class="btn-group', !empty($direction) ? ' navbar-' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '>', implode('', $out_button), '
<button type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown">
    +
  </button>
<ul class="dropdown-menu" role="menu">',
implode('', $buttons), '
</ul>
</div>';
Title: Re: Reseller
Post by: peterwaalker on November 29, 2015, 02:08:59 PM
Ohhhw More Credits @Gluz!!, You have done Excellent. It worked just as i want.
Thank you so much for assisting me.

Is there a way i can box it and highlight the box background to green?

I'm still grateful even if there is no further customization.
Title: Re: Reseller
Post by: Ninja ZX-10RR on December 24, 2015, 09:56:43 AM
I consider this as one of the best responsive themes around, however, if Daniiel allows me, I'd suggest to edit the following:
.poster li.avatar img {width: 100%;} into .poster li.avatar img {max-width: 100%;} otherwise when you see it in mobile view, the avatar expands and stretches horribly over the full page, becoming extremely pixelated and very annoying. It doesn't change anything in other views, except if the user uploaded a minified avatar thumbnail, which is unlikely (and honestly his problem ;D).
I already applied this fix onto 2 customers forum, so I feel I am not alone thinking it this way  ;)

Fixes aside, merry Christmas!
Title: Re: Reseller
Post by: gamuss on February 08, 2016, 06:03:22 AM
Thanks for the template. Why the top menu don't work links and styles too?

Title: Re: Reseller
Post by: irishgal1971 on February 22, 2016, 01:54:11 PM
Can someone fix the necessary files so the menu works?
Title: Re: Reseller
Post by: Daniiel on February 22, 2016, 02:23:47 PM
Quote from: gamuss on February 08, 2016, 06:03:22 AM
Thanks for the template. Why the top menu don't work links and styles too?
Sorry, my mistake.
Do this:
Index.template.php (Themes/Reseller)
Search:
<a', !empty($button['sub_buttons']) ? ' class="dropdown-toggle" ' : '', 'href="', !empty($button['sub_buttons']) ? '#' : $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '', !empty($button['sub_buttons']) ? ' data-toggle="dropdown"' : '', '>


Replace with:
<a', !empty($button['sub_buttons']) ? ' class="dropdown-toggle" ' : '', ' href="', !empty($button['sub_buttons']) ? '#' : $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '', !empty($button['sub_buttons']) ? ' data-toggle="dropdown"' : '', '>
Title: Re: Reseller
Post by: irishgal1971 on February 23, 2016, 11:00:28 AM
I've tried the tweak in the last post and I still can't get the menu to work...Can someone please make the needed fixes to make the menu work fully.
Title: Re: Reseller
Post by: irishgal1971 on February 29, 2016, 11:11:16 AM
I got it fixed! I downloaded the theme file from the smftricks site and overrode the files and the menu works.
Title: Re: Reseller
Post by: arcsales on March 01, 2016, 02:39:25 AM
Did anyone manage to fix the problem with all dropdown menus at the theme after activating ssl?
I've seen an other question here but no one answer it yet.
Its strange....is it possible the link which call the css to be involved and always pointing to http?
Title: Re: Reseller
Post by: arcsales on March 01, 2016, 02:59:33 AM
Quote from: arcsales on March 01, 2016, 02:39:25 AM
Did anyone manage to fix the problem with all dropdown menus at the theme after activating ssl?
I've seen an other question here but no one answer it yet.
Its strange....is it possible the link which call the css to be involved and always pointing to http?

I found a solution.I'll post it here if someone else run into it.
So when you move to ssl that means your basic URL is changing from http to https.
Some links in theme are pointing directly to http because no one was thinking if their users might use ssl.
What i did is to locate all the links pointing to http in the theme files and change them to https.
1st you must access admin panel and give the smf script the right theme directory by going to Configuration/Current Theme and fix the theme path to point to https.
Then connect to your server via FTP or login to your cPanel directly and locate file: Themes/Reseller/index.template.php
Use your browser search or scroll manually to find all http links and transform to https.
Save the file and you are ready.

I dont remember but my dropdown menus are now being open on click event.I think they were dropping down on hover...however this can be fixed in your theme css.


Title: Re: Reseller
Post by: Kardamilas on March 09, 2016, 02:46:30 PM
Goodevening,i had for many days the zoom problem that others are facing like

Quote from: -Captain Ghost- on August 01, 2014, 02:14:15 AM
There is a problem that theme is not resizing according to mobile screen size and one more problem that there is a Spanish text when you click login below password box.

My phone Lumia 520

See screen shots.

Thanks

Edit:
I had observed the code which is causing problem
It is a code in portal.css of simpleportal
Here it is body
{
min-width: 750px;
}


i had modified it to body
{
min-width: device-width;
}


I did the solution that is given but my right blocks and the main forum are squeezing each other like the picture below.

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=247074;image)

I would like my forum on mobile devices looks like that

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=247076;image)
Any idea??
Title: Re: Reseller
Post by: TGLG on March 09, 2016, 09:12:39 PM
This is the best theme I've ever seen. Its beautiful, elegant, refined, gorgeous, well designed, compatible and easy to use.

I have one issue though, the avatar images are all blurry. If anyone could help me out I would really appreciate it thanks!

For reference I have my site set up at forum.christoenzo.com

(https://i.gyazo.com/ab990d884735e5c6bd80bca014b64d7a.png)
Title: Re: Reseller
Post by: Jade Elizabeth on March 11, 2016, 04:01:09 AM
Quote from: Kardamilas on March 09, 2016, 02:46:30 PM
Goodevening,i had for many days the zoom problem that others are facing like

Quote from: -Captain Ghost- on August 01, 2014, 02:14:15 AM
There is a problem that theme is not resizing according to mobile screen size and one more problem that there is a Spanish text when you click login below password box.

My phone Lumia 520

See screen shots.

Thanks

Edit:
I had observed the code which is causing problem
It is a code in portal.css of simpleportal
Here it is body
{
min-width: 750px;
}


i had modified it to body
{
min-width: device-width;
}


I did the solution that is given but my right blocks and the main forum are squeezing each other like the picture below.

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=247074;image)

I would like my forum on mobile devices looks like that

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=247076;image)
Any idea??

I would remove the sidebar on mobiles. Simple Portals website has instructions to do this.
Title: Re: Reseller
Post by: Ninja ZX-10RR on March 11, 2016, 05:39:09 AM
Quote from: Ninja ZX-10RR on December 24, 2015, 09:56:43 AM
I consider this as one of the best responsive themes around, however, if Daniiel allows me, I'd suggest to edit the following:
.poster li.avatar img {width: 100%;} into .poster li.avatar img {max-width: 100%;} otherwise when you see it in mobile view, the avatar expands and stretches horribly over the full page, becoming extremely pixelated and very annoying. It doesn't change anything in other views, except if the user uploaded a minified avatar thumbnail, which is unlikely (and honestly his problem ;D).
I already applied this fix onto 2 customers forum, so I feel I am not alone thinking it this way  ;)

Fixes aside, merry Christmas!
Bump? :/
Title: Re: Reseller
Post by: Kardamilas on March 11, 2016, 07:24:48 AM
Quote from: Jade Elizabeth on March 11, 2016, 04:01:09 AM
Quote from: Kardamilas on March 09, 2016, 02:46:30 PM
Goodevening,i had for many days the zoom problem that others are facing like

Quote from: -Captain Ghost- on August 01, 2014, 02:14:15 AM
There is a problem that theme is not resizing according to mobile screen size and one more problem that there is a Spanish text when you click login below password box.

My phone Lumia 520

See screen shots.

Thanks

Edit:
I had observed the code which is causing problem
It is a code in portal.css of simpleportal
Here it is body
{
min-width: 750px;
}


i had modified it to body
{
min-width: device-width;
}


I did the solution that is given but my right blocks and the main forum are squeezing each other like the picture below.

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=247074;image)

I would like my forum on mobile devices looks like that

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=247076;image)
Any idea??

I would remove the sidebar on mobiles. Simple Portals website has instructions to do this.

I have done that 3 days ago but the view of the forum wasnt correct.I ll do it again and i ll post a picture.
Title: Re: Reseller
Post by: Kardamilas on March 16, 2016, 12:05:56 PM
I did device width and hide block and it shows like that

(https://www.simplemachines.org/community/index.php?action=dlattach;topic=525855.0;attach=247154;image)

I d like all to be a bit smaller on the screen.
Title: Re: Reseller
Post by: Kardamilas on March 26, 2016, 12:31:38 PM
another one...
How can i make that leveled with the center  block

Title: Re: Reseller
Post by: sajidicma on May 11, 2016, 10:36:44 AM
Nice theme. A very good effort. A little help is needed. How can I reduce size of Avatars, because due to large size, avatar images are appearing blurred especially on mobile phone.
Title: Re: Reseller
Post by: Ninja ZX-10RR on May 11, 2016, 11:32:17 AM
Quote from: sajidicma on May 11, 2016, 10:36:44 AM
Nice theme. A very good effort. A little help is needed. How can I reduce size of Avatars, because due to large size, avatar images are appearing blurred especially on mobile phone.
Quote from: Ninja ZX-10RR on December 24, 2015, 09:56:43 AM
I consider this as one of the best responsive themes around, however, if Daniiel allows me, I'd suggest to edit the following:
.poster li.avatar img {width: 100%;} into .poster li.avatar img {max-width: 100%;} otherwise when you see it in mobile view, the avatar expands and stretches horribly over the full page, becoming extremely pixelated and very annoying. It doesn't change anything in other views, except if the user uploaded a minified avatar thumbnail, which is unlikely (and honestly his problem ;D).
I already applied this fix onto 2 customers forum, so I feel I am not alone thinking it this way  ;)

Fixes aside, merry Christmas!
Not sure why Daniiel ignored me but that's the fix. (The file is one of the css files, I honestly cannot remember which one at the moment).
Title: Re: Reseller
Post by: deleted_account on May 11, 2016, 11:33:40 AM
Quick question: How would I edit the url of the home button to redirect somewhere else? Thanks.
Title: Re: Reseller
Post by: neo1998x on May 15, 2016, 07:01:49 PM
Can the avatar on the mobile thread view be fixed?
The avatars look enormous!
Title: Re: Reseller
Post by: qc on May 15, 2016, 07:56:21 PM
Delete the following code from index.css:
.poster li.avatar img {
    width: 100%;
}


Edit: ...or just look up the posts above yours :/
Title: Re: Reseller
Post by: c3463836 on June 05, 2016, 05:51:57 PM
Hi,
How do I change the board icons ?
Title: Re: Reseller
Post by: Jingaling on June 07, 2016, 11:53:52 AM
Hi. Was hoping to add the membergroup name back in when people post. All I can see is the members group star (eg one yellow for newbie or 5 red for admin). Is there a simple way to re-add the membergroup name as well as their stars?

Thanks for a great theme!


***EDIT***
It's ok, I found out the answer from a previous comment in this thread.
Title: Re: Reseller
Post by: jholla on June 22, 2016, 12:39:53 PM
Thanks for a great theme, I'm really enjoying it. I do have one problem that I am not sure how to fix:

If you are logged in and close the tab/page and then come back 15 mins later or so, it looks like you aren't logged in anymore (you see the Login and Register buttons). However, you are still technically logged in... if you click the Register button, it will automatically show you logged in again.

Anyone have any ideas?
Title: Re: Reseller
Post by: xiaonick on June 26, 2016, 09:15:27 PM
Hi Daniiel,


When you look at the theme on a phone, it only shows board names. is it possible to make the Unread post column shows in mobile view.

Thank you!
Title: Re: Reseller
Post by: moner on July 08, 2016, 11:40:41 PM
Hello
very Important
I need Reseller theme For SMF 1.1.21

Please Help me
Title: Re: Reseller
Post by: Kindred on July 09, 2016, 02:02:09 AM
Actually, even more important... You need to upgrade to 2.0.x, since 1.1.x is at the end of its life and will even cease support after 2.1 is released...   
Title: Re: Reseller
Post by: moner on July 09, 2016, 08:42:27 AM
Quote from: Kindred on July 09, 2016, 02:02:09 AM
Actually, even more important... You need to upgrade to 2.0.x, since 1.1.x is at the end of its life and will even cease support after 2.1 is released...

Hello ,Kindred

yes i know but but there important mod for me working only with SMF 1.x.x
and it's not working with SMF 2
View Any Topic permission mod

http://custom.simplemachines.org/mods/index.php?mod=687
i am send reply upgrade request and no answer
http://www.simplemachines.org/community/index.php?topic=156660.msg3879997#msg3879997

i am send reply add This feature in SMF
http://www.simplemachines.org/community/index.php?topic=547009.0

I did not find help so far! :(

Title: Re: Reseller
Post by: Kindred on July 09, 2016, 08:40:22 PM
as stated - it is unlikely to be added as a feature.

And this theme is unlikely to be redone for 1.1.x - especially since 1.1.x is at the end of its life and won't do responsive, at all.
Title: Re: Reseller
Post by: Goodman854 on July 28, 2016, 01:44:56 PM
I noticed a bug. If there are links in the top bar like "Admin" that have drop downs you have to select a drop down. I can't just hit admin and go to the admin area I have to select one of the sub sets of admin. It's usable but annoying. would there be a way to fix that?
Title: Re: Reseller
Post by: Ninja ZX-10RR on July 28, 2016, 06:17:12 PM
No, you can't have an element that is 2 things at the same time (link and dropdown-opener).
Title: Re: Reseller
Post by: Goodman854 on July 28, 2016, 09:58:52 PM
Quote from: Ninja ZX-10RR on July 28, 2016, 06:17:12 PM
No, you can't have an element that is 2 things at the same time (link and dropdown-opener).
Every other theme including the default does this. Do you not know what I'm talking about. And yes you totally can. For most you have to click on the min arrow next to the ADMIN \/ link *\/*. For others you hover over it and see the drop downs and dont click any and just click the primary top. With this theme I literally can't get into the main part of the Forums Admin section without going into a random area first.
Title: Re: Reseller
Post by: Ninja ZX-10RR on July 28, 2016, 10:26:42 PM
I am not sure what you mean then, since the default theme does *not* have that feature, if you click on a dropdown menu it takes you to the corresponding URL, as the dropdown appears while hovering the main button...

If you want to do it so that the main button is BOTH a link AND a dropdown opener, again, it's not possible on the same element. However, if you want to have an additional arrow that can work as a dropdown on click next to the standard link, it's possible.
Title: Re: Reseller
Post by: Kindred on July 28, 2016, 10:40:23 PM
Actually, that's not quite true... You can have a menu item that is both a clickable link and a hover trigger
Title: Re: Reseller
Post by: Ninja ZX-10RR on July 29, 2016, 12:48:24 AM
I said on click, not on hover. On hover is easy.
Title: Re: Reseller
Post by: Goodman854 on July 30, 2016, 06:58:19 PM
Maybe you don't know what I'm trying to say. Because the default theme DOES absolutely do what I said.

https://youtu.be/ViuUGbdGY7M
Title: Re: Reseller
Post by: Ninja ZX-10RR on July 31, 2016, 02:20:45 AM
And that is NOT the default theme! The default theme is the one in use on this site.
Title: Re: Reseller
Post by: Gluz on July 31, 2016, 02:46:31 PM
This Theme on click in a Menu item that have submenus act just to open/close the dropdown, you need to modify the Javascript function to change the close action with the action used on the other menu tabs.
Title: Re: Reseller
Post by: Goodman854 on July 31, 2016, 04:40:41 PM
Quote from: Ninja ZX-10RR on July 31, 2016, 02:20:45 AM
And that is NOT the default theme! The default theme is the one in use on this site.
I am aware but the default acts similarly. It was an example.

Didn't think I'd need to go this far to indicate the obvious but:
https://youtu.be/LaMNlr3jvp4
Title: Re: Reseller
Post by: Ninja ZX-10RR on July 31, 2016, 05:58:22 PM
Quote from: Goodman854 on July 31, 2016, 04:40:41 PM
Quote from: Ninja ZX-10RR on July 31, 2016, 02:20:45 AM
And that is NOT the default theme! The default theme is the one in use on this site.
I am aware but the default acts similarly. It was an example.

Didn't think I'd need to go this far to indicate the obvious but:
https://youtu.be/LaMNlr3jvp4
I think we are not understanding each other at this point.
The default menu GOES to the main button link, if clicked, while what you meant in the other pages was an onclick menu, that showed the dropdown on click, NOT going to the main button link.
Title: Re: Reseller
Post by: Goodman854 on August 02, 2016, 03:18:53 PM
Quote from: Ninja ZX-10RR on July 31, 2016, 05:58:22 PM
Quote from: Goodman854 on July 31, 2016, 04:40:41 PM
Quote from: Ninja ZX-10RR on July 31, 2016, 02:20:45 AM
And that is NOT the default theme! The default theme is the one in use on this site.
I am aware but the default acts similarly. It was an example.

Didn't think I'd need to go this far to indicate the obvious but:
https://youtu.be/LaMNlr3jvp4
I think we are not understanding each other at this point.
The default menu GOES to the main button link, if clicked, while what you meant in the other pages was an onclick menu, that showed the dropdown on click, NOT going to the main button link.
Either one I don't really care. The point is this one does neither of thoes.
Title: Re: Reseller
Post by: Ninja ZX-10RR on August 03, 2016, 01:52:42 AM
I've used this great theme on several sites I worked on, I'm pretty damn sure it does work (I even have it here http://ninjatest2.altervista.org/index.php?action=forum). I have no idea how you can say it doesn't do anything, really, it works on CLICK (if there are sub-buttons, that is), which is the opposite of the default theme that works on HOVER.

Not to mention I don't think the Cust team would have approved a theme with a non-working menu, lol. If it doesn't work for you it may as well be a JS conflict, but it's definitely not the theme being at fault for that - it'd be your particular configuration.
Title: Re: Reseller
Post by: Goodman854 on August 04, 2016, 03:46:48 PM
Quote from: Ninja ZX-10RR on August 03, 2016, 01:52:42 AM
I've used this great theme on several sites I worked on, I'm pretty damn sure it does work (I even have it here http://ninjatest2.altervista.org/index.php?action=forum). I have no idea how you can say it doesn't do anything, really, it works on CLICK (if there are sub-buttons, that is), which is the opposite of the default theme that works on HOVER.

Not to mention I don't think the Cust team would have approved a theme with a non-working menu, lol. If it doesn't work for you it may as well be a JS conflict, but it's definitely not the theme being at fault for that - it'd be your particular configuration.
I really don't understand how you don't understand what isn't working here. I tested your website same issues. I know I get submenus the problem isn't the submenu it's the main menu of that submenu being unclickable but clickable in literately every other theme. Don't get me wrong I love this theme. But that is the one major gaping flaw.

Example on your site you have "MEMBERS" without clicking on a sub link MEMBERS should take you to the members page. This becomes more apparent with the admin button.
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fwww.conjointgaming.com%2Fimages%2Feasytofollow.png&hash=0aa4151148bb62c204e695843314364cf7781b32)

being unable to get directly to the main admin page directly is a massive oversight. No offense to the creator This is just my opinion. And most other themes follow my opinion.
Title: Re: Reseller
Post by: Ninja ZX-10RR on August 04, 2016, 05:57:09 PM
That's much more clear! It doesn't work as it's the button to open the submenu, he'd have to split the arrow from the actual link. I don't like Javascript stuff, so I'm not the best at doing these kind of edits.
Title: Re: Reseller
Post by: Gluz on August 04, 2016, 09:00:27 PM
You didn't understand us either.

We were saying that in this theme, the Menu Tabs that have Submenus act only as a Dropdown open/close buttons, not as a regular link tab, so you have to modify the Javascript of that part to change the close action to the redirection to the link, or modify the template and put the dropdown only in the arrow as Ninja ZX said.

Javascript isn't my best either, so, I opted for another hacky solution for that: add in the submenu array the actual element, for example in Admin I have the Admin sub item, and so on. I know that it isn't the best solution, but is the fast to edit in the source files.
Title: Re: Reseller
Post by: Goodman854 on August 04, 2016, 11:19:10 PM
Quote from: Gluz on August 04, 2016, 09:00:27 PM
You didn't understand us either.

We were saying that in this theme, the Menu Tabs that have Submenus act only as a Dropdown open/close buttons, not as a regular link tab, so you have to modify the Javascript of that part to change the close action to the redirection to the link, or modify the template and put the dropdown only in the arrow as Ninja ZX said.

Javascript isn't my best either, so, I opted for another hacky solution for that: add in the submenu array the actual element, for example in Admin I have the Admin sub item, and so on. I know that it isn't the best solution, but is the fast to edit in the source files.
Well Ninja said that is much more clear now so obviously not everyone understood me at first but its fine.

Regardless, I understand what you are saying in this post and that sounds like an "OKISH" work around. How or where do I go to add the submenu to ADMIN?
index.template.php?

Title: Re: Reseller
Post by: Ninja ZX-10RR on August 04, 2016, 11:48:48 PM
/Sources/Subs.php around lines 4000 (depending on how modded your forum is) you will find a monstrous array with all the buttons, pretty intuitive even without php knowledge :)
Title: Re: Reseller
Post by: Goodman854 on August 05, 2016, 11:24:26 PM
Quote from: Ninja ZX-10RR on August 04, 2016, 11:48:48 PM
/Sources/Subs.php around lines 4000 (depending on how modded your forum is) you will find a monstrous array with all the buttons, pretty intuitive even without php knowledge :)
Alright thanks.
Title: Re: Reseller
Post by: moner on August 09, 2016, 03:34:00 PM
Quote from: Gluz on November 21, 2015, 09:11:56 PM
Well, this is a hackish way to do it.

In index.template.php search:
foreach ($button_strip as $key => $value)
{
if (!isset($value['test']) || !empty($context[$value['test']]))
$buttons[] = '
<li><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span></a></li>';
}


and replace with:
$out_button = array();
foreach ($button_strip as $key => $value)
{
if (!isset($value['test']) || !empty($context[$value['test']]))
if ($key == 'new_topic' || $key == 'reply')
$out_button[] = '
<span><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span></a></span>';
else
$buttons[] = '
<li><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span></a></li>';
}


then search:
echo '
<div class="btn-group', !empty($direction) ? ' navbar-' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '>
<button type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown">
    +
  </button>
<ul class="dropdown-menu" role="menu">',
implode('', $buttons), '
</ul>
</div>';

and replace with:
echo '
<div class="btn-group', !empty($direction) ? ' navbar-' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '>', implode('', $out_button), '
<button type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown">
    +
  </button>
<ul class="dropdown-menu" role="menu">',
implode('', $buttons), '
</ul>
</div>';


Hi
i think there problem in this code

i see send reply and send new topic by Google Chrome
but by firefox i see send reply ONLY
Please try it from your end ,i think problem in this code:
if ($key == 'new_topic' || $key == 'reply')
$out_button[] = '
<span><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span></a></span>';
else
Title: Re: Reseller
Post by: bod22 on August 10, 2016, 08:49:07 AM
Hi, I have a problem with a shoutbox on my site. I've changed default theme into Reseller and some icons from shoutbox are outc of it. I tried to reinstall it but it didn't help. Could you help me to bring them back into shoutbox?

Link to my forum is  strefapsx.pl/forum/index.php
Title: Re: Reseller
Post by: jholla on September 09, 2016, 11:31:29 AM
I'm getting a ton of the following errors logged when I use this theme:

8: Array to string conversion
File: /home/unoffici/public_html/Sources/Subs.php
Line: 2433

Which is this in the code:

$code = strtr($tag['content'], array('$1' => $data));

Any ideas on how to fix it?
Title: Re: Reseller
Post by: secretuser5 on November 13, 2016, 07:57:27 AM
How can I change the board icons the specific ones for each board? I tried to use this mod: http://custom.simplemachines.org/mods/index.php?mod=3604
But it doesn't work with the theme! With the default theme it works. What can I do?
Title: Re: Reseller
Post by: Kindred on November 13, 2016, 09:02:20 AM
you would have to manually edit your theme files to implement the mod...
Title: Re: Reseller
Post by: secretuser5 on November 13, 2016, 09:29:30 AM
ok, can you please tell me how I can do this
Title: Re: Reseller
Post by: d3vcho on November 13, 2016, 09:45:29 AM
Hello!

Check this; Error in Mod Installation (http://wiki.simplemachines.org/smf/Error_in_mod_installation)

Regards :)
Title: Re: Reseller
Post by: secretuser5 on November 13, 2016, 10:56:56 AM
Ok but what do I have to change to get it working?
Title: Re: Reseller
Post by: Kindred on November 13, 2016, 05:23:05 PM
Parse the mod...
Edit the theme template files as the mod says...
Title: Re: Reseller
Post by: secretuser5 on November 14, 2016, 12:38:10 PM
unfortunately I´m not quite good in things like that. Can maybe someone give me a step by step instruction how I can do it?
Title: Re: Reseller
Post by: d3vcho on November 14, 2016, 12:47:04 PM
Quote from: secretuser5 on November 14, 2016, 12:38:10 PM
unfortunately I´m not quite good in things like that. Can maybe someone give me a step by step instruction how I can do it?

Okay, go to the Mod URL and in the right side of the screen you'll see the "Parse" button. In the dropmenu next to that button, select your SMF version and click "Parse". Then, a new screen will appear. Scroll down until "File Edits" and just follow the instructions over there.

This is the button I mean: (https://i.gyazo.com/564792a7cf13da26eb4ef486016f2a54.png)

I hope you understand now.

Regards :)
Title: Re: Reseller
Post by: secretuser5 on November 14, 2016, 01:46:35 PM
Now I got it! Thanks a lot!
Title: Re: Reseller
Post by: BK_123 on March 12, 2017, 09:56:01 AM
I've installed this theme and its requesting a font script running over http and I cannot find where it is so I can correct it to https "http://themes.googleusercontent.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff"
Title: Re: Reseller
Post by: tanawat on March 16, 2017, 12:57:35 PM
i use Thumbnail Topic Mod
picture is small not Enlarge

reseller
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fupic.me%2Fi%2Fdj%2Fresell.png&hash=9f50ba21b7efa603385a9b10d3fa51cca4e0a404)


default theme
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fupic.me%2Fi%2Fkh%2Fresell2.png&hash=f6a82e8cb5cb594910750dbfb7f91f34ffcae388)


exodus theme
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fupic.me%2Fi%2Fm0%2Fresell3.png&hash=3da5c15d10d1216f2c09b7d0ff3d5d560e01e7e1)


Can you help me plese?
Title: Re: Reseller
Post by: liamnoel on June 07, 2017, 09:34:15 AM
Hi! Sorry for my English.
I need a little help  :)
1) How I can change size (or color) of nicknames?
2) How change background to image?
Thanks!
Title: Re: Reseller
Post by: SEOSEO on June 12, 2017, 03:17:01 PM
I am struggling to update my forum from 2.0.13 to 2.0.14 because reseller theme needs a manual mod.  Looking at the test results it shows 'unsuccessful' on SSI.php and my reseller theme's index.template.php file.

The suggestion is to manually change the theme's index.template.php like so:


<input type="hidden" name="hash_passwrd" value="" />


needs to be replaced with

<input type="hidden" name="hash_passwrd" value="" /><input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />


Reseller theme only has this:

<div class="form-group">
<input type="password" name="passwrd" class="form-control" placeholder="', $txt['password'] ,'" />
</div>


What should I do here since I am not using 'hash_passwrd'?
Title: Re: Reseller
Post by: Gluz on June 12, 2017, 04:13:01 PM
Quote from: SEOSEO on June 12, 2017, 03:17:01 PM
I am struggling to update my forum from 2.0.13 to 2.0.14 because reseller theme needs a manual mod.  Looking at the test results it shows 'unsuccessful' on SSI.php and my reseller theme's index.template.php file.

The suggestion is to manually change the theme's index.template.php like so:


<input type="hidden" name="hash_passwrd" value="" />


needs to be replaced with

<input type="hidden" name="hash_passwrd" value="" /><input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />


Reseller theme only has this:

<div class="form-group">
<input type="password" name="passwrd" class="form-control" placeholder="', $txt['password'] ,'" />
</div>


What should I do here since I am not using 'hash_passwrd'?

Just add this after that piece of code:
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />

I have it like that and it works like a charm.
Title: Re: Reseller
Post by: Diego Andrés on July 04, 2017, 07:45:06 PM
Theme Updated
Title: Re: Reseller
Post by: mysimplesite on July 08, 2017, 07:15:52 PM
Downloaded Reseller today.  Menu's don't work. Can't access admin or any menu item with a dropdown link.

Read previous post about SSL and having to change http to https in index.template.php and set proper SSL path.

Unable to access admin to set proper path. Changing all HTTP to HTTPS in index.template.php stopped forum from appearing. Had to upload new index.template.php. Still can't access admin to make changes.

Any help appreciated.
Title: Re: Reseller
Post by: ekonomist 2 on July 11, 2017, 02:00:50 PM
Vay canına, clean and amazing, you did a great minimalistic job :)
Title: Re: Reseller
Post by: Tina11 on September 29, 2017, 04:22:20 PM
Hello!

The Reseller theme is great. Thank you for it!
I have two questions.

1)  I cannot login via the large login button. If I try it, always just this error message shows up: "Your session timed out while posting. Please go back and try again."
Where's the error? Is there a difference between this login button and the login in the top menu?

2)  The login and register buttons are one above the other. Is this because the German words are longer than the English words? How do I get them next to each other in one line?

Kind regards,
Tina
Title: Re: Reseller
Post by: Shambles on September 29, 2017, 05:02:19 PM
https://www.simplemachines.org/community/index.php?action=search2;search=%22Your+session+timed+out+while+posting.+Please+go+back+and+try+again.%22
Title: Re: Reseller
Post by: Tina11 on September 30, 2017, 03:05:40 AM
Thanks, that helped, it works now!
If only now someone could write me how I get the two buttons next to each other. :)
Title: Re: Reseller
Post by: mblendinger on October 18, 2017, 12:18:19 PM
Hello, the green "Login" button stop working magicly in my forum. I try to download lates version and seems the problem persist. The "register" works, but the "Login" just do nothing when pressed. not error show. some ideas? :(
Title: Re: Reseller
Post by: neoweb on November 23, 2017, 05:07:10 AM
Hi There, on my forum I installed Reseller theme (very nice !)).. thank you for the nice job!

(see https://www.neoweb.nl/forum2/ )

But.. in responsive mode, you need to swipe to the left to see all the content. So not all is responsive. ? Is there a quick fix? do I need to disable features or what? (see attachment)




I also want to (automatic) rescale images on mobile devices that people upload as attachments. Is dat included in the Reseller theme?
Title: Re: Reseller
Post by: neoweb on November 23, 2017, 09:28:42 AM
Another Question. Is it possible to implement an AMP in the theme? (accelerated Mobile Pages)
Title: Re: Reseller
Post by: kapetanboris on December 01, 2017, 06:30:19 PM
Quote from: mysimplesite on July 08, 2017, 07:15:52 PM
Downloaded Reseller today.  Menu's don't work. Can't access admin or any menu item with a dropdown link.

Quote from: mblendinger on October 18, 2017, 12:18:19 PM
Hello, the green "Login" button stop working magicly in my forum. I try to download lates version and seems the problem persist. The "register" works, but the "Login" just do nothing when pressed. not error show. some ideas? :(

Had the same problem, LOGIN menu and DROPDOWN menus didnt work at all.

Solution - turn on the internet :) When i clear browser history, disable internet, and reload theme those buttons dont work again, as if they need to DL something from the web in order to work, which is i think a flaw?
Title: Re: Reseller
Post by: kapetanboris on December 08, 2017, 07:12:21 PM
I managed to get HTTPS on my server and when i select Reseller theme (also exodus) i get a warning "this page is trying to load scripts from unauthenticated sources." in chrome. In opera it is even worse, its constantly displaying content blocked.

When i select default curve theme the site is secured (green icon) both in chrome and opera.

Also, when warning  in opera browser displays, the green button (login) in Reseller theme stops working.

Is this some sort of a security hole built in this theme? Where can we see those scripts running for the button?
Title: Re: Reseller
Post by: JonasTheGamer on December 12, 2017, 06:32:11 AM
Same here. The theme just looks AWESOME! But i cannot use it because the menu buttons don't work..... :(
If you would fix it, Thanks!
Title: Re: Reseller
Post by: kapetanboris on December 12, 2017, 02:10:03 PM
Quote from: JonasTheGamer on December 12, 2017, 06:32:11 AM
Same here. The theme just looks AWESOME! But i cannot use it because the menu buttons don't work..... :(
If you would fix it, Thanks!

I solved the button problem with HTTPS:

in index.template.php search this

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

replace with this:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

This and Exodus theme are really great great work and design, thanks to the author i started using google console (developer tools) and it's great stuff for diagnosing and solving problems :)

I have one question, because my PHP is nonexistant :), how can we change breadcrumbs to use this ">" instead of this "/" as a separator
Title: Re: Reseller
Post by: JonasTheGamer on December 16, 2017, 05:03:29 AM
@kaperanboris
Your modify does not work. You just asked me to replace it with exactly the same...
Title: Re: Reseller
Post by: kapetanboris on December 17, 2017, 07:06:34 AM
Quote from: JonasTheGamer on December 16, 2017, 05:03:29 AM
@kaperanboris
Your modify does not work. You just asked me to replace it with exactly the same...

If it didnt work then we didnt have the same problem :)

I first tested theme offline and because .js file was not placed in the folder at the local level green login button didnt work. Also when i turned on HTTPS on my live server, browsers blocked that .js file because of the url starting with HTTP and not HTTPS in the html markup.

So maybe placing it localy could solve the problem of transition to HTTPS (this is a point to the author :) )


I also changed breadcrumbs from this "/" to this "»" by modifying bootstrap.css file in CSS folder of the theme.

To modify breadcrumbs separator in bootstrap.css (in the CSS folder of the theme) search this

/\00a0

Replace with (anything you like, or) this:

»

It should stay contained with "", for example "»"

Thanks to the author now i know that css had those crazy superpowers like creating the structure with ::before or ::after and the content property
Title: Re: Reseller
Post by: jack001 on December 17, 2017, 12:00:36 PM
Quote from: mysimplesite on July 08, 2017, 07:15:52 PM
Downloaded Reseller today.  Menu's don't work. Can't access admin or any menu item with a dropdown link.

Read previous post about SSL and having to change http to https in index.template.php and set proper SSL path.

Unable to access admin to set proper path. Changing all HTTP to HTTPS in index.template.php stopped forum from appearing. Had to upload new index.template.php. Still can't access admin to make changes.

Any help appreciated.
I'm having same problem. Kindly suggest.
Title: Re: Reseller
Post by: Kindred on December 17, 2017, 10:01:22 PM
Quote from: JonasTheGamer on December 16, 2017, 05:03:29 AM
@kaperanboris
Your modify does not work. You just asked me to replace it with exactly the same...

No, he did not... his change was to change http to be https
Title: Re: Reseller
Post by: StarredSkies on March 10, 2018, 04:50:41 PM
Hello! I'm having a few problems.
- Where is the move/remove/sticky/etc options for threads? I have been having trouble locating them.
- Why are my posts / signatures being cut off early?
- Could I get this theme to work with the subaccount modification? It's installed, but I see no option to switch accounts.
Title: Re: Reseller
Post by: StarredSkies on March 10, 2018, 08:14:03 PM
New problem. I recently uninstalled and reinstalled due to these problems. Now my admin drop down, moderation menu, login/registration options aren't working.
Title: Re: Reseller
Post by: -Rock Lee- on March 10, 2018, 08:36:37 PM
Quote from: StarredSkies on March 10, 2018, 08:14:03 PM
New problem. I recently uninstalled and reinstalled due to these problems. Now my admin drop down, moderation menu, login/registration options aren't working.

You have to make arrangements in the login, in the forum there are ways to edit it to solve. Now the theme in general does not meet many rules and tends to fail in many ways ... but if you have time can be resolved, usually are missing variables sometimes I had to put hand.


Regards!
Title: Re: Reseller
Post by: Kindred on March 14, 2018, 11:22:30 AM
If you install a new theme (or reinstall, in your case)
any mod changes made to the template files for that theme will not be done (or will be undone) meaning that you are going to have to MANUALLY make (remake) all changes from any mods to your theme's template files.

This includes the 2.0.14/2.0.15 login fix.
Title: Re: Reseller
Post by: StarredSkies on March 18, 2018, 07:39:38 PM
Fixed everything awhile back and forgot to delete my post! Apologies, but thank you for the help.
Title: Re: Reseller
Post by: bod22 on April 07, 2018, 07:51:10 AM
I have two issues with Reseller that I'd like to change but I don't know how.

First, I can't install Board Icons in this theme. Did you manage to force it work with this theme?

Second, is it possible to display on the list of topics the date of the last post next to the author in responsive version of the forum?
Title: Re: Reseller
Post by: StarredSkies on May 15, 2018, 08:04:50 PM
Quote from: Douglby on October 15, 2014, 10:04:52 AM
Hi

I recently installed the reseller theme however it its only visible to people with the "Administrate forum and database" permissions ticked (I've forced it to apply the theme to all users but still doesn't apply) any reason as to why its doing this?

Also (not a must) but is there a way to enable the old news broadcast that was at the top of the page on this theme as well?

Cheers
Not me, but this never got an answer and I'd enjoy a news dropdown on my site.
Title: Re: Reseller
Post by: ^SoporteGSM^ on October 04, 2018, 07:14:25 PM
Hello friends. My direct question:

Do you know if there is any code or something in particular in this topic that generates conflict with https protocol?
Title: Re: Reseller
Post by: -Rock Lee- on October 06, 2018, 03:50:58 PM
But bad memory in the mixed content of the theme generated does not display the menu, you just have to add the secure connection in some places.


Regards!
Title: Re: Reseller
Post by: Xpresskonami on August 09, 2019, 12:48:58 PM
Please , am using this theme named "Reseller"
Immediately I switched my domain from http to https, all Buttons in this theme stop working. any solution to this please
Title: Re: Reseller
Post by: d3vcho on August 09, 2019, 12:51:01 PM
Here's an useful tutorial. Follow it and let us know if something changed:

Converting to https, step-by-step... (https://www.simplemachines.org/community/index.php?topic=555034.0)
Title: Re: Reseller
Post by: Xpresskonami on August 09, 2019, 07:56:34 PM
Quote from: kapetanboris on December 12, 2017, 02:10:03 PM
Quote from: JonasTheGamer on December 12, 2017, 06:32:11 AM
Same here. The theme just looks AWESOME! But i cannot use it because the menu buttons don't work..... :(
If you would fix it, Thanks!

I solved the button problem with HTTPS:

in index.template.php search this

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

replace with this:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

This and Exodus theme are really great great work and design, thanks to the author i started using google console (developer tools) and it's great stuff for diagnosing and solving problems :)

I have one question, because my PHP is nonexistant :), how can we change breadcrumbs to use this ">" instead of this "/" as a separator

And this solve my problem... Thanks

Title: Re: Reseller
Post by: Xpresskonami on December 15, 2019, 03:54:00 AM
Can we get Accelerated Mobile Page (AMP) for thus theme??
Title: Re: Reseller
Post by: CurtisS on January 20, 2020, 11:48:16 AM
If you are having problems with buttons and links (SMF 2.0.17 in my case) not working properly after moving from HTTP to HTTPS and you have done EVERYTHING else suggested in the 2.0 Support forum than this is likely the problem. Thanks, kapetanboris!

Quote from: kapetanboris on December 12, 2017, 02:10:03 PM

I solved the button problem with HTTPS:

in index.template.php search this

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

replace with this:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

This and Exodus theme are really great great work and design, thanks to the author i started using google console (developer tools) and it's great stuff for diagnosing and solving problems :)

I have one question, because my PHP is nonexistant :), how can we change breadcrumbs to use this ">" instead of this "/" as a separator
Title: Re: Reseller
Post by: Diego Andrés on January 27, 2020, 07:22:33 PM
Updated to SMF 2.0.17
Title: Re: Reseller
Post by: coastalfans on July 18, 2020, 01:02:01 AM
Hi, I'm sorry to be bumping such an old thread but I'm having an issue with this theme that I'm hoping to get some help with.  I've tried posting on the SMF Tricks website but haven't gotten a response there.

On the "Who's Online" list, usernames for users who have chosen to hide their online status do not show up even for Administrators.  It only shows their IP address, as shown here:

(https://i.imgur.com/IXyX7iU.png)

Is there any way to force the "Who's Online" list to show all usernames to forum Administrators?
Title: Re: Reseller
Post by: Diego Andrés on July 18, 2020, 05:36:06 PM
The theme does not include a Who.template.php file so doubt it's causing that issue.
If I remember correctly hidden members are shown on italics like this on the default behavior and it says hidden next to the name (or maybe not I don't recall  :laugh:)
Title: Re: Reseller
Post by: shadav on July 18, 2020, 07:39:38 PM
Quote from: coastalfans on July 18, 2020, 01:02:01 AM
Hi, I'm sorry to be bumping such an old thread but I'm having an issue with this theme that I'm hoping to get some help with.  I've tried posting on the SMF Tricks website but haven't gotten a response there.

On the "Who's Online" list, usernames for users who have chosen to hide their online status do not show up even for Administrators.  It only shows their IP address, as shown here:

(https://i.imgur.com/IXyX7iU.png)

Is there any way to force the "Who's Online" list to show all usernames to forum Administrators?

your admin isn't able to see or a special group isn't able to see? by default the admin should be able to see but any other special groups you will need to change that group permissions and make sure that the box is checked for View hidden users in the online list
this may also have been a modification installed (I don't remember or not)
Title: Re: Reseller
Post by: coastalfans on July 18, 2020, 08:10:24 PM
Quote from: shadav on July 18, 2020, 07:39:38 PMyour admin isn't able to see or a special group isn't able to see? by default the admin should be able to see but any other special groups you will need to change that group permissions and make sure that the box is checked for View hidden users in the online list
this may also have been a modification installed (I don't remember or not)

Correct, I am a forum administrator and I can't see the usernames of people who have chosen to hide their online status on the "Who's Online" list.  It's only an issue with this theme, the theme I am switching from does not have this issue.
Title: Re: Reseller
Post by: shadav on July 18, 2020, 08:15:25 PM
Quote from: coastalfans on July 18, 2020, 08:10:24 PM
Quote from: shadav on July 18, 2020, 07:39:38 PMyour admin isn't able to see or a special group isn't able to see? by default the admin should be able to see but any other special groups you will need to change that group permissions and make sure that the box is checked for View hidden users in the online list
this may also have been a modification installed (I don't remember or not)

Correct, I am a forum administrator and I can't see the usernames of people who have chosen to hide their online status on the "Who's Online" list.  It's only an issue with this theme, the theme I am switching from does not have this issue.

does the default curve theme do this too?

as stated here
Quote from: Diego Andrés on July 18, 2020, 05:36:06 PM
The theme does not include a Who.template.php file so doubt it's causing that issue.
If I remember correctly hidden members are shown on italics like this on the default behavior and it says hidden next to the name (or maybe not I don't recall  :laugh:)
since the theme doesn't come with that template, it pulls the info from the default curve template

what theme were you using? you could try copying that theme's who.template.php into this theme's folder and see what happens  :laugh: (might need to edit the file a bit)
Title: Re: Reseller
Post by: coastalfans on July 18, 2020, 09:03:44 PM
Quote from: shadav on July 18, 2020, 08:15:25 PM
Quote from: coastalfans on July 18, 2020, 08:10:24 PM
Quote from: shadav on July 18, 2020, 07:39:38 PMyour admin isn't able to see or a special group isn't able to see? by default the admin should be able to see but any other special groups you will need to change that group permissions and make sure that the box is checked for View hidden users in the online list
this may also have been a modification installed (I don't remember or not)

Correct, I am a forum administrator and I can't see the usernames of people who have chosen to hide their online status on the "Who's Online" list.  It's only an issue with this theme, the theme I am switching from does not have this issue.

does the default curve theme do this too?

as stated here
Quote from: Diego Andrés on July 18, 2020, 05:36:06 PM
The theme does not include a Who.template.php file so doubt it's causing that issue.
If I remember correctly hidden members are shown on italics like this on the default behavior and it says hidden next to the name (or maybe not I don't recall  :laugh:)
since the theme doesn't come with that template, it pulls the info from the default curve template

what theme were you using? you could try copying that theme's who.template.php into this theme's folder and see what happens  :laugh: (might need to edit the file a bit)

I was using an older theme called DS-Natural.  I'm also trying to upgrade my forum from 2.0.15 to 2.0.17 (I know, I'm way behind the times), which is causing another issue:

(https://i.imgur.com/O9B6JIi.png)

EDIT: I'm sorry, I forgot to answer your first question.  The default Curve theme does not have the error on the "Who's Online" page.
Title: Re: Reseller
Post by: Diego Andrés on July 19, 2020, 03:39:42 AM
Reseller is already updated for 2.0.17 assuming you downloaded it recently so you can ignore the modifications from 2.0.16 patch
Title: Re: Reseller
Post by: coastalfans on July 19, 2020, 10:30:46 PM
Quote from: Diego Andrés on July 19, 2020, 03:39:42 AMReseller is already updated for 2.0.17 assuming you downloaded it recently so you can ignore the modifications from 2.0.16 patch

Cool, so I can patch to 2.0.16 and not worry about the PersonalMessage.template.php error?

Thanks for all your help, BTW :)
Title: Re: Reseller
Post by: Kindred on July 20, 2020, 12:57:54 PM
I believe the statement indicates that you should not apply 2.0.17 patch updates to Reseller at all...
Title: Re: Reseller
Post by: iRablap on January 22, 2021, 11:44:04 PM
I have to problem with the avatar default of theme, because my avatar personalized don't change in the post.
Title: Re: Reseller
Post by: Naig on June 10, 2021, 02:14:58 AM
Is it possible to remove the captcha? or something similar? is that the captcha image to register does not appear and does not stop registering any user.
Title: Re: Reseller
Post by: Kindred on June 10, 2021, 04:47:55 PM
That's a setting in admin- security and anti-spam
Title: Re: Reseller
Post by: StarredSkies on December 04, 2023, 11:42:13 PM
Hi Diego! This theme has been my ride or die for the past few years. It's about time for us to update to 2.1. Are you planning on making a 2.1 version of Reseller or something similar? I would hate to switch.
Title: Re: Reseller
Post by: Diego Andrés on December 05, 2023, 04:31:47 PM
Can't promise it will happen soon, but perhaps at one point for sure.
Title: Re: Reseller
Post by: StarredSkies on December 11, 2023, 07:42:02 PM
Sounds like a plan! Thank you for replying. :) You're the best.