SMF Tricks

SMF Tricks Themes => Free Themes => Topic started by: Daniel on July 28, 2014, 09:19:18 PM

Title: Reseller
Post by: Daniel on July 28, 2014, 09:19:18 PM
Link to the theme (https://custom.simplemachines.org/index.php?theme=2806)

(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://demo20.smftricks.com/index.php?theme=50)
GitHub (https://github.com/SMFTricks/Reseller)
Title: Re: Reseller
Post by: stecomminfo on August 05, 2014, 02:15:08 AM
When trying to Download PSD Logo it shows database error. Could you please fix this :) Thanks a lot
Title: Re: Reseller
Post by: stecomminfo on August 05, 2014, 09:22:20 AM
After applying the Reseller theme. Everything is perfect. Only problem is that the Parent item links were fine in default theme are now as # links in this particular theme. Kindly suggest what needs to be done.

Thanks for this awesome theme.
Title: Re: Reseller
Post by: Daniel on August 05, 2014, 05:19:43 PM
Quote from: stecomminfo on August 05, 2014, 02:15:08 AM
When trying to Download PSD Logo it shows database error. Could you please fix this :) Thanks a lot
This is a problem that we are trying to fix, meanwhile I will attach the file here for everybody who need it.
Title: Re: Reseller
Post by: ultrazone on August 06, 2014, 11:23:54 PM
@Daniel and Other SMFGurus

I have just installed Reseller theme on my forum. This is a wonderful theme. I appreciate your efforts. However, here are the issues I'm facing currently.

1. How do I make the menu (home, login, register, my messages, profile, logout etc) appear without having to click the 'toggle navigation' just like you have them under the smftrick logo on this forum.

2. How can I add mobile adsense code to the forum

3. I need to make some buttons appear without having to click the green + buttons and blue 'action' How do I make the common ones like 'New topic' 'Reply' 'Move Topic' 'Quote' etc to be visible. Not every user can easily locate them in their folded away under another button.

4. Though I have uploaded a picture as my avatar, it doesn't show up on topics and posts. It still displays the default blue avatar with 'question mark sign.'
How do I resolve this problem? Any theme setting/code edit to disable that default giant blue avatar?

Thanks.
Title: Re: Reseller
Post by: everest9 on August 13, 2014, 12:08:57 AM
Smf tricks you are the best all you themes is extremely great, i wish you guys long life and prosperity
Title: Re: Reseller
Post by: everest9 on August 13, 2014, 03:13:23 AM
i install this theme and everything turn to white as if there is no theme present, please can cause it, is smf version 7.0.8
Title: Re: Reseller
Post by: Daniel on August 16, 2014, 09:22:41 PM
1.- Index.template.php (Themes/Reseller)
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 for:
// 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, '" ', $button['active_button'] ? 'class="active"' : '', '>
<a ', $button['sub_buttons'] ? 'class="dropdown-toggle" ' : '', 'href="', $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '>
', $button['title'], '
</a>
</li>';
}
}

You add icons like smftricks with this mod: http://smftricks.com/index.php?action=downloads;sa=view;down=47#forum
2.- Adsense gives you several types of advertising including one specific to mobile.
3.- 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>';

4.- That must be a problem that has nothing to do with the theme. You should try if it does not work in the default theme.
Title: Re: Reseller
Post by: Daniel on August 16, 2014, 09:35:05 PM
Quote from: everest9 on August 13, 2014, 03:13:23 AM
i install this theme and everything turn to white as if there is no theme present, please can cause it, is smf version 7.0.8
You had to have a problem uploading the theme, try uploading again.
Title: Re: Reseller
Post by: ultrazone on August 18, 2014, 12:12:35 AM
@Daniel, I appreciate your generous support from the depth of my heart. Issues 2-5 have been resolved and I'm now relieved. Unfortunately, I still have to click 'toggle navigation' before the simple menu icons are displayed. I have installed simple menu icons as you recommended but the links are not showing up like you have here on smftricks (shows on PC view). I'm testing with operamini mobile browser which is what most of my forum members use. Please kindly help me, Sir. I'll prefer that the links to the main menus stand out above the logo like in SMFtricks instead of having to be clicking toggle navigation.
Title: Re: Reseller
Post by: Kiki26022003 on August 20, 2014, 11:44:09 AM
Buen theme!! Ahora lo descargo
Title: Re: Reseller
Post by: agentpr24 on August 20, 2014, 02:21:43 PM
Hello,

im sorry to disturb you but i have a weird issue. I am unable to click on any of the menu variable or even have it drop down.

I tried from my personnal PC (Windows 7), a virtual PC in my server (Windows 7) and from my server desktop (Windows Server 2008 R2). I have tried with Internet Explorer, Firefox, Chrome, Opera and Safari on every computer but i was not successfull.

Is there something i did not understand or did not see because im out of idea. My SMF version is 2.0.8.

Thank you very much for your time and help (in advance) and this theme is awesome.

Regards,

Ozan
Title: Re: Reseller
Post by: Daniel on August 20, 2014, 06:00:02 PM
Quote from: agentpr24 on August 20, 2014, 02:21:43 PM
Hello,

im sorry to disturb you but i have a weird issue. I am unable to click on any of the menu variable or even have it drop down.

I tried from my personnal PC (Windows 7), a virtual PC in my server (Windows 7) and from my server desktop (Windows Server 2008 R2). I have tried with Internet Explorer, Firefox, Chrome, Opera and Safari on every computer but i was not successfull.

Is there something i did not understand or did not see because im out of idea. My SMF version is 2.0.8.

Thank you very much for your time and help (in advance) and this theme is awesome.

Regards,

Ozan
This post is not for support, please create a topic in the section for support and will gladly help you. If you can explain it with images, is better.
Title: Re: Reseller
Post by: Daniel on August 25, 2014, 03:35:49 PM
Quote from: ultrazone on August 18, 2014, 12:12:35 AM
@Daniel, I appreciate your generous support from the depth of my heart. Issues 2-5 have been resolved and I'm now relieved. Unfortunately, I still have to click 'toggle navigation' before the simple menu icons are displayed. I have installed simple menu icons as you recommended but the links are not showing up like you have here on smftricks (shows on PC view). I'm testing with operamini mobile browser which is what most of my forum members use. Please kindly help me, Sir. I'll prefer that the links to the main menus stand out above the logo like in SMFtricks instead of having to be clicking toggle navigation.
You mean that you want the nav like this: http://prntscr.com/4gf202 ?
Title: Re: Reseller
Post by: ultrazone on August 25, 2014, 04:48:29 PM
You are right, Daniel. All I need is for the menu options to be visible like that of smftricks on mobile operamini view. If you don't mind, you can compare the header/navbar view using operamini browser: http://smftricks.com and http://wetalknaira.com
Title: Re: Reseller
Post by: Daniel on August 25, 2014, 04:56:25 PM
Quote from: ultrazone on August 25, 2014, 04:48:29 PM
You are right, Daniel. All I need is for the menu options to be visible like that of smftricks on mobile operamini view. If you don't mind, you can compare the header/navbar view using operamini browser: http://smftricks.com and http://wetalknaira.com

Well this requires many changes, so give me some time and tell you what you have to do.
Greetings!
Title: Re: Reseller
Post by: ultrazone on August 25, 2014, 05:10:03 PM
Thanks for your prompt assistance all this while. I'll definitely give you more time to work on it. You have been more than a help. Cheers!
Title: Re: Reseller
Post by: ColicDusty on August 26, 2014, 06:09:31 AM
Hola comunidad de SMFTricks, lo primero agradecer a esta comunidad por realizar este brillante tema (Reseller), veran tengo un problema, preciso agregar el mod Ad Management Mod para poder colocar publicidad en mi futuro foro. El problema esta que cuando pruebo instalarlo me sale Prueba Fallida.

Aquí les dejo una imagen del problema:
Spoiler
(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi1055.photobucket.com%2Falbums%2Fs502%2FColicDusty%2FSintiacutetulo_zps69ab969b.png&hash=6bba9aeb7deb65db79f9c1f32bdceae276e076f0)
[close]

Era para saber si me podrian ayudar.
Gracias por todo ColicDusty.
Title: Re: Reseller
Post by: Daniel on August 26, 2014, 02:26:10 PM
Tendrás que hacer los cambios manualmente, solo en los que te den error. Para saber que tienes que hacer, solo tienes que dar click en esta imagen: (https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FvDzDG05.png&hash=9b0cffb65ac5837e24fadb9d9a92140d75e5617c), en cada linea que te de error. Si necesitas ayuda porque no encuentras algo o te salta error en el archivo, solo déjame el código (de lo que buscar y lo que tienes que reemplazar o agregar) y te ayudare.
Saludos!
Title: Re: Reseller
Post by: ColicDusty on August 26, 2014, 04:47:20 PM
Entiendo pero es que la mayoria de cosas no se encuentran en el archivos, asi que Daniel sinó te importa ayudarme aquí te dejo el recopilatorio de lo que no he conseguido:

I/Fallo:
/Themes/Reseller/BoardIndex.template.php
Spoiler
AÑADIR DESPUÉS:
Código a Encontrar(He buscado ese tbody y no lo encuentro T.T):
<tbody class="divider">
<tr>
<td colspan="4"></td>
</tr>
</tbody>';

Codígo a Añadir Después:
echo '<tbody><tr><td colspan="4">';
//Display ads Between cats
if (function_exists("show_category"))
{
$ads = show_category($category['id']);
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}
echo ' </td></tr></tbody>';
[close]

II/Fallo:
/Themes/Reseller/Display.template.php
Spoiler
REEMPLAZAR:
Código a Encontrar:
}

echo '
</form>
</div>
<a id="lastPost"></a>';

Codígo a REEMPLAZAR:
if (function_exists("show_posts"))
{
$messageStorage = $message;
if ($adpost = show_posts($adcounter))
{
if($modSettings['ads_lookLikePosts'])
{
echo '
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="poster">
<h4>', $context['forum_name'], '</h4>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="', $message['icon_url'] . '" alt="" border="0" />
</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">';

// Can they reply? Have they turned on quick reply?
if ($context['can_reply'] && !empty($options['display_quick_reply']))
echo '
<li class="quote_button"><a>', $txt['quote'], '</a></li>';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_reply'])
echo '
<li class="quote_button"><a>', $txt['quote'], '</a></li>';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
<li class="modify_button"><a>', $txt['modify'], '</a></li>';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
<li class="remove_button"><a>', $txt['remove'], '</a></li>';

// What about splitting it off the rest of the topic?
if ($context['can_split'] && !empty($context['num_replies']))
echo '
<li class="split_button"><a>', $txt['split'], '</a></li>';

// Can we restore topics?
if ($context['can_restore_msg'])
echo '
<li class="restore_button"><a>', $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>';

echo '
</div>';


// Show the post itself, finally!
echo '
<div class="post">';

echo '
<div class="inner" id="msg_', $message['id'], '"', '>', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) ,'</div>
</div>';


echo '
</div>


<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
';
}
else
echo '
<div class="windowbg">
<span class="topslice"><span></span></span>

<div align="center">', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) ,'</div>

<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
';
}
}
}

if(function_exists("show_lastpostAds") && function_exists("show_posts"))
{
$message = $messageStorage;
if(($adpost = show_lastpostAds()) && !show_posts($adcounter))
{
if($modSettings['ads_lookLikePosts'])
{
echo '
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="poster">
<h4>', $context['forum_name'], '</h4>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="', $message['icon_url'] . '" alt="" border="0" />
</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">';

// Can they reply? Have they turned on quick reply?
if ($context['can_reply'] && !empty($options['display_quick_reply']))
echo '
<li class="quote_button"><a>', $txt['quote'], '</a></li>';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_reply'])
echo '
<li class="quote_button"><a>', $txt['quote'], '</a></li>';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
<li class="modify_button"><a>', $txt['modify'], '</a></li>';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
<li class="remove_button"><a>', $txt['remove'], '</a></li>';

// What about splitting it off the rest of the topic?
if ($context['can_split'] && !empty($context['num_replies']))
echo '
<li class="split_button"><a>', $txt['split'], '</a></li>';

// Can we restore topics?
if ($context['can_restore_msg'])
echo '
<li class="restore_button"><a>', $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>';

echo '
</div>';


// Show the post itself, finally!
echo '
<div class="post">';

echo '
<div class="inner" id="msg_', $message['id'], '"', '>', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) ,'</div>
</div>';


echo '
</div>


<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
';
}
else
echo '
<div class="windowbg">
<span class="topslice"><span></span></span>

<div align="center">', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) ,'</div>

<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
';
}
}

echo '
</form>
</div>
<a id="lastPost"></a>';

[close]

III/Fallo:
/Themes/Reseller/BoardIndex.template.php
Spoiler
AÑADIR DESPUÉS:
Código a Encontrar:
echo '
<input type="hidden" name="hash_passwrd" value="" />
</form>';
}

Codígo a Añadir Después:
// Begin Ad  management Location - Welcome Area/User Information Box

if (function_exists("show_welcomeAds"))
{
$ads = show_welcomeAds();
if(!empty($ads))
{
echo '<td class="windowbg2">';
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
echo '</td>';
}
unset($ads);
}

// End Ad  management Location - Welcome Area/User Information Box


[close]

Estos son los 3 fallos que me da, por favor Daniel si puedes ayudarme te lo agradeceria mil.
PD: Nose si me he explicado bien, si precisas de una mejor explicación comentamelo.

Saludos ColicDusty.
Title: Re: Reseller
Post by: Daniel on August 26, 2014, 05:02:27 PM
I Fallo
Buscar:
echo '
</tbody>
</table>';
}
echo '
</div>
<br />';
}
echo '
</div>';

if ($context['user']['is_logged'])


Reemplazar por:
echo '
</tbody>
</table>';
}
echo '
</div>
        <br />
<table class="table_list">
<tbody>
<tr>
<td colspan="4">';
//Display ads Between cats
if (function_exists("show_category"))
{
$ads = show_category($category['id']);
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}
echo '
</td>
</tr>
</tbody>
</table>';
}
echo '
</div>';

if ($context['user']['is_logged'])


II Fallo
Buscar:
}
echo '
</form>
</div>
<a id="lastPost"></a>';


Reemplazar por:
if (function_exists("show_posts"))
{
$messageStorage = $message;
if ($adpost = show_posts($adcounter))
{
if($modSettings['ads_lookLikePosts'])
{
echo '
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="poster">
<h4>', $context['forum_name'], '</h4>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="', $message['icon_url'] . '" alt="" border="0" />
</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">';

// Can they reply? Have they turned on quick reply?
if ($context['can_reply'] && !empty($options['display_quick_reply']))
echo '
<li class="quote_button"><a>', $txt['quote'], '</a></li>';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_reply'])
echo '
<li class="quote_button"><a>', $txt['quote'], '</a></li>';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
<li class="modify_button"><a>', $txt['modify'], '</a></li>';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
<li class="remove_button"><a>', $txt['remove'], '</a></li>';

// What about splitting it off the rest of the topic?
if ($context['can_split'] && !empty($context['num_replies']))
echo '
<li class="split_button"><a>', $txt['split'], '</a></li>';

// Can we restore topics?
if ($context['can_restore_msg'])
echo '
<li class="restore_button"><a>', $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>';

echo '
</div>';


// Show the post itself, finally!
echo '
<div class="post">';

echo '
<div class="inner" id="msg_', $message['id'], '"', '>', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) ,'</div>
</div>';


echo '
</div>


<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
';
}
else
echo '
<div class="windowbg">
<span class="topslice"><span></span></span>

<div align="center">', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) ,'</div>

<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
';
}
}
}

if(function_exists("show_lastpostAds") && function_exists("show_posts"))
{
$message = $messageStorage;
if(($adpost = show_lastpostAds()) && !show_posts($adcounter))
{
if($modSettings['ads_lookLikePosts'])
{
echo '
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="poster">
<h4>', $context['forum_name'], '</h4>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="', $message['icon_url'] . '" alt="" border="0" />
</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">';

// Can they reply? Have they turned on quick reply?
if ($context['can_reply'] && !empty($options['display_quick_reply']))
echo '
<li class="quote_button"><a>', $txt['quote'], '</a></li>';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_reply'])
echo '
<li class="quote_button"><a>', $txt['quote'], '</a></li>';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
<li class="modify_button"><a>', $txt['modify'], '</a></li>';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
<li class="remove_button"><a>', $txt['remove'], '</a></li>';

// What about splitting it off the rest of the topic?
if ($context['can_split'] && !empty($context['num_replies']))
echo '
<li class="split_button"><a>', $txt['split'], '</a></li>';

// Can we restore topics?
if ($context['can_restore_msg'])
echo '
<li class="restore_button"><a>', $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>';

echo '
</div>';


// Show the post itself, finally!
echo '
<div class="post">';

echo '
<div class="inner" id="msg_', $message['id'], '"', '>', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) ,'</div>
</div>';


echo '
</div>


<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
';
}
else
echo '
<div class="windowbg">
<span class="topslice"><span></span></span>

<div align="center">', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) ,'</div>

<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
';
}
}

echo '
</form>
</div>
<a id="lastPost"></a>';


III Fallo
Estas seguro que es en ese archivo, porque he buscado tanto en el theme reseller como en el default y no esta.
Title: Re: Reseller
Post by: ColicDusty on August 26, 2014, 05:08:10 PM
III Fallo
En este fallo es que no se encuentra lo que pone busca por <form> y veras que es muy largo nose está como diferente -.-'
Title: Re: Reseller
Post by: Daniel on August 26, 2014, 05:16:07 PM
Quote from: ColicDusty on August 26, 2014, 05:08:10 PM
III Fallo
En este fallo es que no se encuentra lo que pone busca por <form> y veras que es muy largo nose está como diferente -.-'
Entonces creo que puedes obviar este error y instalar el mod, creo que no generara problemas a futuro.
Title: Re: Reseller
Post by: ColicDusty on August 26, 2014, 05:37:47 PM
No se me muestran los anuncios, obto por desinstalar el mod y probar con otro haber que tal.

De todas formas gracias por tu tiempo Daniel.

Saludos ColicDusty.
Title: Re: Reseller
Post by: Daniel on August 26, 2014, 05:46:51 PM
Quote from: ColicDusty on August 26, 2014, 05:37:47 PM
No se me muestran los anuncios, obto por desinstalar el mod y probar con otro haber que tal.

De todas formas gracias por tu tiempo Daniel.

Saludos ColicDusty.
Si no mal recuerdo en ese mod, los anuncios no se muestran a los administradores porque hay una opción activada por defecto que no permite que se muestre. Tal vez sea por eso que no se te muestre los anuncios.
Title: Re: Reseller
Post by: ColicDusty on August 26, 2014, 05:52:40 PM
Looollzzzz es verdad -.-' Perdon Fail mio cierro el tema que cree.... Perdón Daniel mil perdones
Title: Re: Reseller
Post by: Daniel on August 26, 2014, 05:55:44 PM
Quote from: ColicDusty on August 26, 2014, 05:52:40 PM
Looollzzzz es verdad -.-' Perdon Fail mio cierro el tema que cree.... Perdón Daniel mil perdones
Jajajajaja tranquilo, creo que no eres el único que le ha pasado.
Tranquilo, yo borro el otro tema.
Title: Re: Reseller
Post by: ColicDusty on August 26, 2014, 05:58:27 PM
Quote from: Daniel on August 26, 2014, 05:55:44 PM
Jajajajaja tranquilo, creo que no eres el único que le ha pasado.
Tranquilo, yo borro el otro tema.
Gracias muchas, gracias solo me deja ver el Add en lo que es la parte de abajo del foro pero it's something con eso me comformo ^^, mañana otra cosa :P
Title: Re: Reseller
Post by: jebus on August 26, 2014, 10:19:03 PM
Hola

Quiero agregar un campo de busqueda en el index por que no trae..

He puesto el codigo en el area que lo quiero de esta manera.. utilizando el codigo defualt de smf

<form id="search_form" action="', $scripturl, '?action=search2" method="post" accept-charset="', $context['character_set'], '">
<input type="text" name="search" value="" class="input_text" />&nbsp;
<input type="submit" name="submit" value="', $txt['search'], '" class="button_submit" />
<input type="hidden" name="advanced" value="0" />


Y se muestra perfecto como lo quiero y se realizan las busquedas. Pero a partir de que lo agregue todos los botones del foro me funcionan como "buscar" .. o sea.. pongo ingresar cuando me voy a logear y me manda como si hubiera buscado algo.. si entro a administracion y hago un cambio me pasa lo mismo.. con todos los botones del foro...

Es rarisimo pero seguro esta modificado el tema del buton_submit o algo asi..
Title: Re: Reseller
Post by: Daniel on August 26, 2014, 10:49:07 PM
El codigo que estas utilizando esta incompleto, no estas cerrando la etiqueta <form> y tambien te falta un input importante para el buen funcionamiento del buscador, aquí te dejo el codigo:
<form id="search_form" action="', $scripturl, '?action=search2" method="post" accept-charset="', $context['character_set'], '">
<input type="text" name="search" value="" class="input_text" />&nbsp;
<input type="submit" name="submit" value="', $txt['search'], '" class="button_submit" />
<input type="hidden" name="advanced" value="0" />';

// Search within current topic?
if (!empty($context['current_topic']))
echo '
<input type="hidden" name="topic" value="', $context['current_topic'], '" />';
// If we're on a certain board, limit it to this board ;).
elseif (!empty($context['current_board']))
echo '
<input type="hidden" name="brd[', $context['current_board'], ']" value="', $context['current_board'], '" />';

echo '</form>
Title: Re: Reseller
Post by: SamerNajada on August 27, 2014, 01:53:21 AM
@Daniel and Other SMFGurus
I have just installed Reseller theme on my forum.

Just I Need Change Color NAV Top
(https://smftricks.com/proxy.php?request=http%3A%2F%2Fwww8.0zz0.com%2F2014%2F08%2F27%2F06%2F961499831.png&hash=ef26be8b3891238f3def9da4f67432d1d9b080f0)

Can Give Steps
Title: Re: Reseller
Post by: Daniel on August 27, 2014, 03:12:46 AM
Search in reseller.css (Themes/Reseller/css):
/* Navbar */
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
}

And change background-color: #26282b; for the color that you want.
Title: Re: Reseller
Post by: SamerNajada on August 27, 2014, 03:15:07 AM
Quote from: Daniel on August 27, 2014, 03:12:46 AM
Search in reseller.css (Themes/Reseller/css):
/* Navbar */
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
}

And change background-color: #26282b; for the color that you want.
THX Brother
Title: Re: Reseller
Post by: SamerNajada on August 27, 2014, 03:22:20 AM
IM Save Why Not Apply

""
http://forum-sftdm.ml/index.php
""
Title: Re: Reseller
Post by: Daniel on August 27, 2014, 03:24:31 AM
(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2F70DXJ1B.png&hash=72ab395057deb2c47a66d1437dad5a226bbaf1a2)

CTRL + F5 :)
Title: Re: Reseller
Post by: SamerNajada on August 27, 2014, 03:26:44 AM
Quote from: Daniel on August 27, 2014, 03:24:31 AM
(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2F70DXJ1B.png&hash=72ab395057deb2c47a66d1437dad5a226bbaf1a2)

CTRL + F5 :)
OHH Thx
IM Sorry For Advertise My Website 
Title: Re: Reseller
Post by: Daniel on August 27, 2014, 03:32:54 AM
Quote from: SamerNajada on August 27, 2014, 03:26:44 AM
OHH Thx
IM Sorry For Advertise My Website
That does not matter, it is better to know the website of each, it is better for support.
Title: Re: Reseller
Post by: jebus on August 27, 2014, 12:48:27 PM
Ah gracias... otra cosa.. se podra poner el centro de informacion como la de este foro? he leido sobre conflictos de librerias que podria pasar..
Title: Re: Reseller
Post by: moopasa on September 06, 2014, 12:11:43 AM
First of all, congratulations on Reseller. Finally a decent (and responsive) SMF Theme.

Some issues (and suggestions)

1. How come the photo in the avatar looks pixelated?


2. Why is it that the member role/permission does not show up? (Example: Administrator, Member, Moderator)? It used to show up in my old theme (SEE ATTACHED).
Title: Re: Reseller
Post by: moopasa on September 06, 2014, 12:17:01 AM
3. How come, when replying to a thread, the title bar gets misaligned? How can we fix this? See attached.

4. How can we add our social icons: Facebook, Twitter Instagram. I see that you have that in the preview of reseller.

5. Like what the other users said, how can we add "advertisements" after the first post in the thread?



Thanks in advance. Looking forward for your support and help!
Title: Re: Reseller
Post by: Daniel on September 06, 2014, 01:04:47 PM
1. The avatar looks pixelated because the original size is smaller than the asking there.
2. I think doing the theme, I didn't put that code.
Search:
// 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>';

3. http://www.simplemachines.org/community/index.php?topic=525855.msg3733120#msg3733120
4. Admin > Configuration > Current theme
5. http://custom.simplemachines.org/mods/?mod=255
If you configure fine the ads, and fixed the problems that I leave in latest post, It should work fine.
Title: Re: Reseller
Post by: Daniel on September 06, 2014, 01:40:58 PM
Well I'm done, many modifications as I said but I did. Adjuntame your index.template.php, and I'll tell you to do.
Title: Re: Reseller
Post by: moopasa on September 06, 2014, 09:03:58 PM
This is awesome. Let me try it.

Btw, can we add an instagram icon? :)
Title: Re: Reseller
Post by: Diego Andrés on September 07, 2014, 03:21:08 PM
Quote from: moopasa on September 06, 2014, 09:03:58 PM
This is awesome. Let me try it.

Btw, can we add an instagram icon? :)

Do you mean for members? You can add it using the custom profile fields in the admin  :P
Or use a mod, there are some of them http://custom.simplemachines.org/mods/index.php?mod=3304
and http://custom.simplemachines.org/mods/index.php?mod=3673
Title: Re: Reseller
Post by: moopasa on September 09, 2014, 03:27:20 AM
Oh sorry, I meant at the footer of the theme.

At the footer, Reseller already has icons for FB, Twitter and Youtube. I was wondering if we can add for Instagram? See attached screenshot.
Title: Re: Reseller
Post by: Diego Andrés on September 10, 2014, 09:52:43 PM
Ok then you'll need to modify 3 files.

index.template.php 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['instagram_check']))
echo'
<a href="', !empty($settings['instagram_text']) ? $settings['instagram_text'] : 'http://www.instagram.com' ,'"><img src="', $settings['images_url'], '/social_icons/instagram.png" alt="', $txt['rs_instagram'], '" /></a>';


Settings.template.php 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' => 'instagram_check',
'label' => $txt['instagram_check'],
),
array(
'id' => 'instagram_text',
'label' => $txt['instagram_text'],
'type' => 'text',
),


And languages/ThemeStrings.english.php add before ?>
$txt['rs_instagram'] = 'Instagram';
$txt['instagram_check'] = 'Enable icon of Instagram';
$txt['instagram_text'] = 'URL of the page to Instagram';


And finally, just upload the instagram icon to Themes/Reseller/images/social_icons/
The name should be instagram.png
You can use this image I found https://cdn3.iconfinder.com/data/icons/erlen-s-social-media-icon-set/32/icon_instagram_32.png
Title: Re: Reseller
Post by: Limkos on September 11, 2014, 03:30:58 PM
Tiene un fallo, no sale la imagen de verificación
Title: Re: Reseller
Post by: moopasa on September 12, 2014, 07:15:34 PM
Thank YOU Diego and Daniel

This is awesome. Works like a charm. See attached.
Title: Re: Reseller
Post by: moopasa on September 12, 2014, 07:16:58 PM
Hey,sorry if I have a few more questions.

I was wondering if you can make the menu expand automatically on mouse over without having to click it?


See attached.
Title: Re: Reseller
Post by: moopasa on September 12, 2014, 07:18:33 PM
Also, I noticed there is a very brief time period when the newsfader displays all the news items before collapsing as "one".

Is it possible to not show all the news items and make the newsfader flash the news item one at a time?
Title: Re: Reseller
Post by: szaszekk56 on September 14, 2014, 05:55:39 AM
Hello everyone, super theme, gratulations!
Unfortunately, Internet Explorer errors, Chrome works fine. What could be wrong?

Title: Re: Reseller
Post by: Diego Andrés on September 14, 2014, 11:01:17 AM
Internet explorer do not support properly CSS 3 and HTML 5
Title: Re: Reseller
Post by: szaszekk56 on September 14, 2014, 01:49:50 PM
Oh! the great IE...

thx!
Title: Re: Reseller
Post by: Derby on September 17, 2014, 11:40:38 AM
please is this theme reponsive? and what is the logo.zip used for as attached on the smf site
Title: Re: Reseller
Post by: Diego Andrés on September 17, 2014, 12:57:26 PM
Quote from: Derby on September 17, 2014, 11:40:38 AM
please is this theme reponsive? and what is the logo.zip used for as attached on the smf site

Yes it's responsive.
You can use the psd for edit the default logo.
Title: Re: Reseller
Post by: Derby on September 17, 2014, 01:09:00 PM
Quote from: Diego Andrés on September 17, 2014, 12:57:26 PM
Yes it's responsive.
You can use the psd for edit the default logo.
yeah how the blue background where the logo reselller is ?i want to change it
Title: Re: Reseller
Post by: moopasa on September 18, 2014, 12:27:05 AM
I understand that Reseller is a responsive theme. However, when viewing from a mobile device, i find the profile pictures to be quite big. Is it possible to shrink the way the "wrap" theme does it?


See attached?
Title: Re: Reseller
Post by: Daniel on September 18, 2014, 07:09:38 PM
Index.css
Search and delete:
.poster li.avatar img
{
width: 100%;
}

Title: Re: Reseller
Post by: AkShit on September 27, 2014, 12:03:34 AM
Hello,

I'm using smf 2.0.8 with simpleportal. There is no vertical spacing between the blocks that makes it look a bit ugly. Is there a way to adjust spacing between the blocks?

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FnS8xZ8W.jpg&hash=ef95a0bfb91a1479589cb501284a36dff5370fc1)
How it should look.


(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FvJpoyuF.jpg&hash=8cad5e86071153690ed60d1d75893b12642fe247)
how it looks
Title: Re: Reseller
Post by: Daniel on September 27, 2014, 01:40:22 AM
Reseller.css (Themes/Reseller/css)
Add to the end:
#sp_center
{
     padding: 0 5px;
}
Title: Re: Reseller
Post by: AkShit on September 27, 2014, 03:21:05 AM
Wow! that was amazingly quick response.

Thank you sir. You rock, and so does the theme.. Thanks a lot :)
Title: Re: Reseller
Post by: moopasa on September 27, 2014, 10:04:52 PM
thanks Daniel
Title: Re: Reseller
Post by: moopasa on September 27, 2014, 10:07:08 PM
Hi Daniel/SMF Tricks admins

I was wondering how we can improve the checkbox and search button in the search page of Reseller?

I think they are too close/overlapping to one another. Please see attached screenshot or image.



Thanks,
Title: Re: Reseller
Post by: Daniel on September 27, 2014, 10:18:52 PM
Reseller.css
Add to the end:
input[type=button], input[type=submit]{margin: 0 10px;}
Title: Re: Reseller
Post by: AkShit on September 27, 2014, 11:55:39 PM
Hello again,

I have a few questions about reseller,

1. When using Ultimate profile, text in the title bars of the profile fields is at extreme left. It is normal at other places.

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2F3o0ZvHs.jpg&hash=af854da5f786c6f4bc61c447732bd4f4d7bab7bc)


2. Is SA shop mod (http://smftricks.com/index.php?topic=435.0#forum) compatible with Reseller? If no, what modifications are required? (I installed mod but did not see any credit info on profile)

3. How can I get Login via facebook option on my forum. SA facebook integration gave me API error. Is there any other way? I made my facebook app a week ago.

4. What theme does this site use?
Title: Re: Reseller
Post by: Daniel on September 28, 2014, 12:38:15 AM
1. That is not problem of the theme, is problem of the template of the mod. Attach your UltimateProfile.template.php (Themes/Default)
2. Yes, it is compatible. When you installed the mod, you checked the box to have effected changes in the theme?
3. Sorry, I don't know another mod. Have you tried searching for support on the official website of the mod?
4. It is a unique theme for this website.
Title: Re: Reseller
Post by: AkShit on September 28, 2014, 12:43:06 AM
Attached.

I'll try installing SA shop again. Thank you :)

Edit, (https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FWBy44uK.jpg&hash=e61322a1231008c467f8bf13cc99c66445f79775)

Will it be fine if I manually insert the code in there?
Title: Re: Reseller
Post by: Daniel on September 28, 2014, 12:52:18 AM
Try this. | Yes, you have to do manually the code of the error. If you can't find them, I will help you.
Title: Re: Reseller
Post by: AkShit on September 28, 2014, 01:06:31 AM
The ultimate profile issue is solved.

SA shop is installed but i still don't see credits in the profile
Title: Re: Reseller
Post by: Daniel on September 28, 2014, 01:11:11 AM
Quote from: akshtsaklani7 on September 28, 2014, 01:06:31 AM
The ultimate profile issue is solved.

SA shop is installed but i still don't see credits in the profile
ok, do this:
Display.template.php (Themes/Reseller)
Search:
// Show how many posts they have made.
if (!isset($context['disabled_fields']['posts']))
echo '
<li class="postcount"><img src="',$settings['images_url'] ,'/postcount.png" /> ', $message['member']['posts'], '</li>';


Add after:

// Begin shop Mod
echo '
<li>', $modSettings['shopprefix'], $message['member']['cash'], $modSettings['shopsurfix'], ' </li>';
echo'<li><a href="', $scripturl, '?action=shop;sa=inventory;next2=', $message['member']['username'], '">',$txt['View_Inventory'],'</a></li>
<li><a href="', $scripturl, '?action=shop;sa=gift;u=', $message['member']['username'], '">Send '.$modSettings['shopsurfix'].'/Gift </a></li>';
echo '<li>';
if ($modSettings['ShopIpDis'] == 1 && $modSettings['ShopIpPos'] == 0)
{
if (count($message['member']['shopitems']) != 0)
{
foreach ($message['member']['shopitems'] as $shopitem)
{
echo '<img src="',$settings['images_url'], '/shopimg/item_images/',$shopitem['image'],' " alt ="',$shopitem['desc'],'" />&nbsp;&nbsp;';
}

}
}
echo '</li>';
// End shop Mod


Search:
// Show the member's signature?

Add before:

if ($modSettings['ShopIpDis'] == 1 && $modSettings['ShopIpPos'] == 1)
{
if (count($message['member']['shopitems']) != 0)
{
echo '
<div class="signature">';
foreach ($message['member']['shopitems'] as $shopitem)
{
echo '<img src=" ',$settings['images_url'],'/shopimg/item_images/',$shopitem['image'],'" alt=" ',$shopitem['desc'],'" />&nbsp;&nbsp;';
}
echo '</div>';
}
}


And that's it.
Greetings!
Title: Re: Reseller
Post by: moopasa on September 29, 2014, 07:49:29 AM
Quote from: Daniel on September 27, 2014, 10:18:52 PM
Reseller.css
Add to the end:
input[type=button], input[type=submit]{margin: 0 10px;}

Thanks as always Daniel.
Title: Re: Reseller
Post by: Daniel on September 29, 2014, 08:29:09 PM
Try with this mod for the 3: http://custom.simplemachines.org/mods/index.php?mod=3580
Title: Re: Reseller
Post by: AkShit on October 04, 2014, 08:45:06 AM
hello again, and sorry for bothering so many times.

I wanted to ask a few more things.

1. I'm having an unwanted extra navigation tab (with no text) when I log in. (https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2F9cz81ef.png&hash=938dfdb9bd34aab327e164adfd911088861f60af)

Attaching subs.php. Could you please check what's going wrong?

2. Is it possible that dropdowns of the navigation bar buttons appear just by hovering cursor on them and not by clicking?

3. Can I add badges depicting posts like on smf tricks site (webmaster, support etc)

4. I want to add some links in the footer, attaching details. Please help.

Thanking in anticipation. :)
Title: Re: Reseller
Post by: Daniel on October 04, 2014, 12:56:00 PM
1. I don't see the error in the file. I registered on your forum and not see it.
2. It can be done. But it would be very difficult because it is being used boostrap for the menu and actually I don't know how, I have to put me to see.
3. Yes, you can. Just upload the images of the badges to  Themes/Reseller images and configure the ranges to display the badge.
4. index.template.php
Search:
<div class="col-lg-12">
', !empty($settings['reseller_copyright']) ? $settings['reseller_copyright'] : $context['forum_name'] .' &copy;' ,'
</div>';


Replace with:
<div class="col-lg-12">
', !empty($settings['reseller_copyright']) ? $settings['reseller_copyright'] : $context['forum_name'] .' &copy;' ,'
</div>
<div class="col-lg-12">
<a href="' .$scripturl . '?topic=6.0" target="_blank">Terms of Service</a>&nbsp;|&nbsp;
<a href="' .$scripturl . '?topic=4.0" target="_blank">Privacy Policy</a>&nbsp;|&nbsp;
<a href="' .$scripturl . '?topic=3.0" target="_blank">Site Rules</a>&nbsp;|&nbsp;
<a href="' .$scripturl . '?topic=12.0" target="_blank">Advertise</a>&nbsp;|&nbsp;
<a href="' .$scripturl . '?topic=9.0" target="_blank">We\'re Hiring</a>
</div>';
Title: Re: Reseller
Post by: AkShit on October 04, 2014, 01:12:07 PM
The nav bar issue will be visible if you log in and read any topic.
Title: Re: Reseller
Post by: Daniel on October 04, 2014, 01:18:57 PM
Quote from: akshtsaklani7 on October 04, 2014, 01:12:07 PM
The nav bar issue will be visible if you log in and read any topic.
That ap
It appears that not finding a button to activate it so it creates one. Do this:
Add to the end of Reseller.css:
#button_forum{display: none;}
Title: Re: Reseller
Post by: AkShit on October 04, 2014, 08:01:59 PM
Thanks a ton mate. All worked  :)
Title: Re: Reseller
Post by: windsor on October 06, 2014, 10:51:48 PM
Hi there,
   
    It's a great responsive theme but I think my website isn't compatible with it, so it's possible to disable responsive on Reseller theme ?

    If can't, how can I set to show 100% width on a mobile phone (Please see in a attach file) ?

    Thank you so much, sorry for my bad English.
Title: Re: Reseller
Post by: AkShit on October 07, 2014, 10:06:56 AM
Hey,

I was trying to experiment with the color scheme of the theme. I've placed a dark background, and I'm stuck at a few things.

1. nextlinks, bottom next links need to be of #EEE without affecting other links
(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2F90Gjez2.jpg&hash=001a47d152da2f9f0bf9efff2f5bd5f58013ce9e)

2. Navpage links (simpleportal block) needs to be #EEE
(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FnRpRaJ1.jpg&hash=c9afb24f8ee7bcc608277a73ffb8257fe6b69a66)

3. Bottom breadcrumb going out at right side
(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2Ft9jQBp1.jpg&hash=d809489c8cf57b6cb5c3805faa9d02b8264a6f07)
Title: Re: Reseller
Post by: AkShit on October 08, 2014, 05:31:41 AM
Quote from: windsor on October 06, 2014, 10:51:48 PM
If can't, how can I set to show 100% width on a mobile phone (Please see in a attach file) ?


The issue is with simple portal.

themes/default/css/portal.css

find
body
{
min-width: 750px;
}


And replace
body
{
min-width: device-width;
}
Title: Re: Reseller
Post by: windsor on October 08, 2014, 08:52:48 AM
Quote from: akshtsaklani7 on October 08, 2014, 05:31:41 AM
The issue is with simple portal.

themes/default/css/portal.css

find
body
{
min-width: 750px;
}


And replace
body
{
min-width: device-width;
}


For my site I use
body
{
min-width: 500px;
}


Oh It work!! Thank you,

now I need to tune a simple portal to make it responsive. So hard right ?
Title: Re: Reseller
Post by: Noelle on October 08, 2014, 10:55:35 AM
Hello, first of all thank you for this great theme, I am totally in love with it.

I have one question, is it possible to use the normal buttons again instead of the green "+" to create new topics, new polls etc? Same goes for the buttons in threads such as reply, add poll, notify etc?

Title: Re: Reseller
Post by: AkShit on October 08, 2014, 11:35:21 AM
http://smftricks.com/index.php?topic=564.0#forum

Already answered.
Title: Re: Reseller
Post by: AkShit on October 09, 2014, 09:55:49 AM
Alright, I completely removed the bottom breadcrumb by commenting out
theme_linktree()

in display.template.php and MessageIndex.template.php
Title: Re: Reseller
Post by: Daniel on October 10, 2014, 11:27:18 AM
Index.css (Themes/Reseller/css)
Search:
.pagelinks
{
        color: #EEE;
padding: 0.6em 0 0.4em 0;
}

Add after:
.pagelinks a, .nextlinks a
{
    color: #EEE;
}
Title: Re: Reseller
Post by: AkShit on October 10, 2014, 11:38:00 AM
Quote from: Daniel on September 29, 2014, 08:29:09 PM
Try with this mod for the 3: http://custom.simplemachines.org/mods/index.php?mod=3580

Thanks for the mod. Works fine. Although I have one question, How do I get the buttons on login Dialogbox that appears via header button?

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FhsEZzPQ.jpg&hash=9ac66b09add97ed4ed5e39afaf408b1d28508951) Login Page

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FiHrgihM.jpg&hash=59e1451ee119ff2e2426ac622f5d1af9ec55e572) Login Dialog box
Title: Re: Reseller
Post by: AkShit on October 11, 2014, 10:34:48 PM
Thank you :)
Title: Re: Reseller
Post by: AkShit on October 13, 2014, 08:28:22 AM
Also, I'd suggest to add at the end of your portal.css (...themes/default/css/portal.css)

@media only screen and (max-width: 480px)
{
#sp_left, #sp_right
{
display: none;
visibility: hidden;
}
}

This will remove the side blocks when viewed on smaller screens
Title: Re: Reseller
Post by: moopasa on October 13, 2014, 10:19:33 AM
Hi all,

Need your help. There seems to be a bug in the "Poll" options menu.

When I click on the + button under the poll, the options do not show up or are hidden.

See attached screenshot.
Title: Re: Reseller
Post by: Daniel on October 14, 2014, 06:19:10 PM
See this: http://www.simplemachines.org/community/index.php?topic=525855.msg3730093#msg3730093
Title: Re: Reseller
Post by: cannabisgamer on October 17, 2014, 10:28:39 PM
Hey I have this theme downloaded, and all is well. I'm curious on if I can add a full image background too the theme, And if I can what files would I replace or add? Thank you
Title: Re: Reseller
Post by: jstuie on October 27, 2014, 08:42:39 AM
Hi,
   I am having trouble finding the moderator tools that allow me to lock a topic (etc.) in the Reseller theme.
Either I am completely blind or they are missing.
Title: Re: Reseller
Post by: Diego Andrés on October 30, 2014, 03:59:35 PM
Quote from: jstuie on October 27, 2014, 08:42:39 AM
Hi,
   I am having trouble finding the moderator tools that allow me to lock a topic (etc.) in the Reseller theme.
Either I am completely blind or they are missing.

You have to click the "+" plus button
Title: Re: Reseller
Post by: jstuie on October 30, 2014, 05:38:20 PM
Ah thank you!
Title: Re: Reseller
Post by: Guliberg on October 31, 2014, 06:46:09 PM
Utilizo el Reseller, sin retoques en cuanto al background. Quisiera añadir una imagen cover fixed, utilizando el sgte. código:


html {
  background: url(images/background.png) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}


Lo puse en index.css, reemplazando por el body, pero no resulta ningún cambio, ¿cómo puedo hacerlo?
Gracias.
Title: Re: Reseller
Post by: Diego Andrés on October 31, 2014, 06:54:51 PM
Tienes 3 opciones, cualquiera podría funcionar
1- Cambia html por body
2- Cambia html por html, body
3- Agrega al final de cada propiedad, antes de las ; un !important

Saludos
Title: Re: Reseller
Post by: Guliberg on October 31, 2014, 07:06:00 PM
Gracias por la pronta respuesta, pero aún sigue sin funcionarme.
La imagen es la siguiente: http://prntscr.com/51srcg

Así está la parte de Body en el Index.css:
/* Set a fontsize that will look the same in all browsers. */
body
{

background: #EEE;
margin: 0 auto;
padding: 0;

}
html, body {
  background: url(images/background.png) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}


El fondo está en blanco ahora tras haber puesto eso, es decir, no se produjo cambios. Si interesa, el foro está ubicado en http://foro.outbreakzrp.com/
Title: Re: Reseller
Post by: Diego Andrés on October 31, 2014, 07:30:27 PM
Prueba simplemente reemplazar esta parte
body
{

background: #EEE;
margin: 0 auto;
padding: 0;

}


Por
body
{

background: url(../images/background.png) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
margin: 0 auto;
padding: 0;

}


Por cierto, en la ruta te faltaron los puntos: ../images/etc.etc/
Los cuales ya se encuentran en el segundo código
Title: Re: Reseller
Post by: Guliberg on October 31, 2014, 08:19:04 PM
Muchas gracias, ahora sí funciona.
Otras consultas, para no hacer otro post:
1-¿Cómo puedo aumentar el espaciado entre categorías? es decir, lo señalado en la imagen: http://prntscr.com/51t9bq

2- ¿Cómo sería para agregarle un hoover al pasar el cursor por los subforos, en el index?, como en el index de SMF Tricks.

3- Tengo un problema con la carga de la página, aveces surge un white screen cuando voy al Index, o cuando intento Conectarme o Registrarme, le pasa a otros visitantes también, no sé si es un problema con el Theme o del mismo Host, ¿qué podría ser? (el Package Manager funciona bien, sólo esto pasa en las situaciones que mencioné)

Gracias.
Title: Re: Reseller
Post by: Diego Andrés on October 31, 2014, 08:54:59 PM
1- En el BoardIndex.template.php del theme busca:
echo '
</div>
<br />';
}
echo '
</div>';


Reemplaza con
echo '
</div>
<br /><br />';
}
echo '
</div>';


2- Basta con que al final del index.css del theme agregues algo como:
.windowbg4:hover {
    background-color: #f7f7f7;
}


3- Yo supongo que sería el hosting, no creo que exista algún elemento que pueda afectar directamente de esa manera tu foro.

Saludos!
Title: Re: Reseller
Post by: Guliberg on October 31, 2014, 09:47:25 PM
Muchas gracias.
Title: Re: Reseller
Post by: Porr on November 06, 2014, 02:43:38 AM
I think the awnser is here http://www.simplemachines.org/community/index.php?topic=525855.60

I tried it..and got the normal stuff back.
Title: Re: Reseller
Post by: Porr on November 06, 2014, 02:53:52 AM
I have 3 questions

But first i want to complement you on the theme. And that its free. I run a non profit forum and i love it. Mabey in the future we have some more funds. I already made some small alterations to the forum but i am no programmer.

first question:

1 thing that is missing is a warning 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 nothing worked. The code of this theme is a little different then i am used to

The second. I saw on the SMF tricks site that the green + box was replaced with text (actions for example). I would like to do the same.

And three. I like the menu you use here (on the left). It is almost the same as on reseller when the page is scalled to mobile. I would love to have that menu in all views (mobile and desktop). Preferrable working the sameway as here on SMF tricks.
Title: Re: Reseller
Post by: Daniel on November 06, 2014, 08:04:05 PM
1. Search:
<li><a href="', $scripturl, '?action=unreadreplies">', $txt['unread_replies'], '</a></li>
Replace with:
<li><a href="', $scripturl, '?action=unreadreplies">', $txt['unread_replies'], '</a></li>';
// 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>';
}
echo'


2. Search:
<button type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown">
    +
  </button>


And change + for the word what you want.

3. When I have a little more of time, I will let the tutorial.
Title: Re: Reseller
Post by: Porr on November 07, 2014, 09:14:58 AM
Thx :-)

I have some problem with the code for question 1. My forum breaks. Maybe a small error. I am not at home so can not debug.

and awnser 2 works perfect  ;D
Title: Re: Reseller
Post by: Daniel on November 07, 2014, 10:49:53 AM
Quote from: Porr on November 07, 2014, 09:14:58 AM
Thx :-)

I have some problem with the code for question 1. My forum breaks. Maybe a small error. I am not at home so can not debug.

and awnser 2 works perfect  ;D
Sorry, my mistake. The code is:
<li><a href="', $scripturl, '?action=unreadreplies">', $txt['unread_replies'], '</a></li>';
// 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>';
}
echo'
Title: Re: Reseller
Post by: Porr on November 07, 2014, 12:32:17 PM
It worked. Thank for the effort you put into it.

Those 2 things where really needed to be fixed before i can make the theme the default :-) The (3th)menu thing is more because of the cool factor. But i can test that later when you had time. I will make some minor changes to colors and then it can be the default :D

Have a nice weekend.
Title: Re: Reseller
Post by: Daniel on November 07, 2014, 01:15:12 PM
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 $abrir = $(".abrir");
var $cerrar = $(".cerrar");
var $menu = $("#sidebar");
var $content = $("#main");
$abrir.click( function(){
$menu.css("left","0px");
$cerrar.css("display","block");
$abrir.css("display","none");
$content.css("margin-left","300px");
});
$cerrar.click( function(){
$menu.css("left","-300px");
$cerrar.css("display","none");
$abrir.css("display","block");
$content.css("margin-left","auto");
});
$("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:
echo'
<nav class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container">
<div class="row">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand visible-xs" href="', $scripturl, '">', $context['forum_name'] ,'</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">';

// Show the menu here, according to the menu sub template.
template_menu();

echo'
</ul>
</div>
</div>
</div>
</nav>


Replace with:
// Show the menu here, according to the menu sub template.
template_menu();

echo'
<div id="main">
<nav class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container">
<div>
<div class="navbar-header">
<div class="btn-sidebar">
<a href="javascript:void(0);" class="abrir">
<button type="button" class="navbar-toggle" style="display: block">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</a>
<a href="javascript:void(0);" class="cerrar">
<button type="button" class="navbar-toggle" style="display: block">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</a>
</div>
<a class="navbar-brand" href="', $scripturl, '">', $context['forum_name'] ,'</a>
</div>
</div>
</div>
</nav>


Search:
function template_html_below()
{
global $context, $settings, $options, $scripturl, $txt, $modSettings;

echo '
</body></html>';
}

Replace with:
function template_html_below()
{
global $context, $settings, $options, $scripturl, $txt, $modSettings;

echo '
</div>
</body></html>';
}


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;

echo '
<aside id="sidebar">
<ul class="nav nav-list">';

foreach ($context['menu_buttons'] as $act => $button)
{
echo '
<li id="button_', $act, '">
<a class="', $button['active_button'] ? 'active ' : '', 'firstlevel" href="', $button['href'], '#forum"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '>
<span class="', isset($button['is_last']) ? 'last ' : '', 'firstlevel">', $button['title'], '</span>
</a>
</li>';
}

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


Reseller.css
Add to the end:
aside#sidebar{
    background: #222;
    width: 300px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -300px;
    transition: 0.2s;
    -webkit-transition: 0.2s;
}
#wrapper
{
    transition: 0.2s;
    -webkit-transition: 0.2s;
}
.btn-sidebar
{
float: left;
}
#sidebar > .nav li
{
border-top: 1px solid rgba(95, 95, 95, 0.1);
}
#sidebar > .nav li:last-child
{
border-bottom: 1px solid rgba(95, 95, 95, 0.1);
}
#sidebar > .nav > li a
{
color: #d2c0c4;
}
#sidebar > .nav > li a:hover
{
color: #3498db;
background-color: #1b1516;
}
#sidebar > .nav > li a.active
{
color: #3498db;
}
.cerrar{
    display: none;
}


Regards!
Title: Re: Reseller
Post by: Porr on November 07, 2014, 03:22:02 PM
Works :D Looks  as a non SMF forum now ;D and thats a compliment. Just learning a lot by just looking at the code and changing small stuff. And breaking it sometimes hehe...

Greetings,
Title: Re: Reseller
Post by: Porr on November 07, 2014, 03:40:03 PM
How did you prevent the horizantal scroll bar when opening the menu? I tried it with the general code in the index.css

/* This division wraps the entire forum when a forum width is set. */
div#wrapper
{
margin: 0 auto;
width: 90%;
margin-top: 40px;
margin-bottom: 40px;
Title: Re: Reseller
Post by: Porr on November 08, 2014, 05:17:04 AM
Changed the way the menu reacts so now the forum does not changes horizantal. Perfect :D
Title: Re: Reseller
Post by: bry82 on November 09, 2014, 04:38:44 AM
Hi,
is it possible to remove the button "login" and "register" from the blue header?
thank you
Title: Re: Reseller
Post by: bry82 on November 09, 2014, 05:42:53 AM
Quote from: Daniel on September 06, 2014, 01:04:47 PM
2. I think doing the theme, I didn't put that code.
Search:
// 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>';



I'm trying to do the same. Can you tell me which file I need to edit? Thanks :)
Title: Re: Reseller
Post by: bry82 on November 09, 2014, 08:00:07 AM
Okay, I managed to find out what to edit, Display.template.php

Can I display an image instaed of "administrator", "moderator" etc...?
Title: Re: Reseller
Post by: Daniel on November 09, 2014, 10:50:12 AM
Index.template.php (Themes/Reseller)
Search and delete:
else
{
echo'
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#myModal">', $txt['login'] ,'</button>
<button type="button" class="btn btn-primary" onclick="location.href=\''. $scripturl .'?action=register\'">', $txt['register'] ,'</button>
<form id="guest_form" action="', $scripturl, '?action=login2" method="post" accept-charset="', $context['character_set'], '" ', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, \'' . $context['session_id'] . '\');"' : '', '>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">', $txt['login'] ,'</h4>
</div>
<div class="modal-body">
<div class="form-group">
<input type="text" name="user" class="form-control" placeholder="', $txt['user'] ,'" />
</div>
<div class="form-group">
<input type="password" name="passwrd" class="form-control" placeholder="', $txt['password'] ,'" />
</div>
<div class="checkbox">
<label>
<input name="cookielength" type="checkbox" value="-1" /> ', $txt['rs_remember'] ,'
</label>
</div>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-success">', $txt['login'] ,'</button>
</div>
</div>
</div>
</div>
</form>';
}
Title: Re: Reseller
Post by: bry82 on November 09, 2014, 11:00:23 AM
Brilliant! Thank you!
Title: Re: Reseller
Post by: bry82 on November 13, 2014, 06:42:35 AM
Hi,
since switching to reseller theme, the newsfader disappeared.
Where should it appear?
Is it a feature of the theme?

Edit: solved. Sorry. :(
Title: Re: Reseller
Post by: Guliberg on November 13, 2014, 04:51:31 PM
Buenas. Mi duda es, ¿cómo podría añadir nuevas fuentes (web fonts) al foro, agregadas en el BBCode?, como fuentes predeterminadas como Arial, Courier, etc.

Y la otra es... ¿cómo podría cambiar el diseño de la lista de páginas del fondo por cuadros, como en SMFTricks?, creo que es más cómodo tenerlo de esa manera para resoluciones en móviles, por que se hace difícil hacer click con el dedo a las pequeñas letras de las páginas; utilizo el theme Reseller.

Muchas gracias.
Title: Re: Reseller
Post by: bry82 on November 14, 2014, 12:09:49 PM
QuoteJust upload the images of the badges to  Themes/Reseller images and configure the ranges to display the badge.

I'd like to do this too. How do I configure the ranges? Thank you. ^_^
Title: Re: Reseller
Post by: ForumMix on November 15, 2014, 11:27:33 AM
I was wondering how to increase pages on this theme. Today, there are many temor with this adaptation-Forum width:
Ange 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: Daniel on November 15, 2014, 01:37:36 PM
Quote from: bry82 on November 09, 2014, 08:00:07 AM
Okay, I managed to find out what to edit, Display.template.php

Can I display an image instaed of "administrator", "moderator" etc...?
You have to edit in the administration group member, there you will find how to setup the images. Remember that images should be in the following path: Themes/{yourtheme}/images


Quote from: ForumMix on November 15, 2014, 11:27:33 AM
I was wondering how to increase pages on this theme. Today, there are many temor with this adaptation-Forum width:
Ange forum width. For example: 950px, 80%, 1240px.

But this is missing this. Now I wonder where this can be? Can anyone identify this?
Open another topic for this question.
Title: Re: Reseller
Post by: Daniel on November 15, 2014, 01:44:39 PM
En realidad, no se mucho sobre como agregar fuentes en los BBC, pero puedes mirar este mod: http://custom.simplemachines.org/mods/index.php?mod=3478

A que te refieres con lo del diseño de la lista de páginas del fondo por cuadros?
Title: Re: Reseller
Post by: ForumMix on November 15, 2014, 02:12:49 PM
I was wondering how to increase pages on this theme. Today, there are many temor with this adaptation-Forum width:
Ange 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: Guliberg on November 17, 2014, 08:32:44 PM
Voy a probar el mod.

Sobre lo segundo, me refería al cuadro rosado de la página de los topics, el que está arriba y abajo.

Gracias por la respuesta.
Title: Re: Reseller
Post by: Daniel on November 20, 2014, 11:54:04 PM
There is no option in the administration to change the width of the forum. If you want, you can do the following:
Bootstrap.css (Themes/Reseller/css)
Search:
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

Replace with:
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 90%;
  }
}

width: 90%; < There you can change de width of the forum.
Title: Re: Reseller
Post by: Daniel on November 21, 2014, 12:09:39 AM
Subs.php (Carpeta Sources)
Buscar:
function constructPageIndex($base_url, &$start, $max_value, $num_per_page, $flexible_start = false)
{
global $modSettings;

// Save whether $start was less than 0 or not.
$start = (int) $start;
$start_invalid = $start < 0;

// Make sure $start is a proper variable - not less than 0.
if ($start_invalid)
$start = 0;
// Not greater than the upper bound.
elseif ($start >= $max_value)
$start = max(0, (int) $max_value - (((int) $max_value % (int) $num_per_page) == 0 ? $num_per_page : ((int) $max_value % (int) $num_per_page)));
// And it has to be a multiple of $num_per_page!
else
$start = max(0, (int) $start - ((int) $start % (int) $num_per_page));

// Wireless will need the protocol on the URL somewhere.
if (WIRELESS)
$base_url .= ';' . WIRELESS_PROTOCOL;

$base_link = '<a class="navPages" href="' . ($flexible_start ? $base_url : strtr($base_url, array('%' => '%%')) . ';start=%1$d') . '">%2$s</a> ';

// Compact pages is off or on?
if (empty($modSettings['compactTopicPagesEnable']))
{
// Show the left arrow.
$pageindex = $start == 0 ? ' ' : sprintf($base_link, $start - $num_per_page, '&#171;');

// Show all the pages.
$display_page = 1;
for ($counter = 0; $counter < $max_value; $counter += $num_per_page)
$pageindex .= $start == $counter && !$start_invalid ? '<strong>' . $display_page++ . '</strong> ' : sprintf($base_link, $counter, $display_page++);

// Show the right arrow.
$display_page = ($start + $num_per_page) > $max_value ? $max_value : ($start + $num_per_page);
if ($start != $counter - $max_value && !$start_invalid)
$pageindex .= $display_page > $counter - $num_per_page ? ' ' : sprintf($base_link, $display_page, '&#187;');
}
else
{
// If they didn't enter an odd value, pretend they did.
$PageContiguous = (int) ($modSettings['compactTopicPagesContiguous'] - ($modSettings['compactTopicPagesContiguous'] % 2)) / 2;

// Show the first page. (>1< ... 6 7 [8] 9 10 ... 15)
if ($start > $num_per_page * $PageContiguous)
$pageindex = sprintf($base_link, 0, '1');
else
$pageindex = '';

// Show the ... after the first page.  (1 >...< 6 7 [8] 9 10 ... 15)
if ($start > $num_per_page * ($PageContiguous + 1))
$pageindex .= '<span style="font-weight: bold;" onclick="' . htmlspecialchars('expandPages(this, ' . JavaScriptEscape(($flexible_start ? $base_url : strtr($base_url, array('%' => '%%')) . ';start=%1$d')) . ', ' . $num_per_page . ', ' . ($start - $num_per_page * $PageContiguous) . ', ' . $num_per_page . ');') . '" onmouseover="this.style.cursor = \'pointer\';"> ... </span>';

// Show the pages before the current one. (1 ... >6 7< [8] 9 10 ... 15)
for ($nCont = $PageContiguous; $nCont >= 1; $nCont--)
if ($start >= $num_per_page * $nCont)
{
$tmpStart = $start - $num_per_page * $nCont;
$pageindex.= sprintf($base_link, $tmpStart, $tmpStart / $num_per_page + 1);
}

// Show the current page. (1 ... 6 7 >[8]< 9 10 ... 15)
if (!$start_invalid)
$pageindex .= '[<strong>' . ($start / $num_per_page + 1) . '</strong>] ';
else
$pageindex .= sprintf($base_link, $start, $start / $num_per_page + 1);

// Show the pages after the current one... (1 ... 6 7 [8] >9 10< ... 15)
$tmpMaxPages = (int) (($max_value - 1) / $num_per_page) * $num_per_page;
for ($nCont = 1; $nCont <= $PageContiguous; $nCont++)
if ($start + $num_per_page * $nCont <= $tmpMaxPages)
{
$tmpStart = $start + $num_per_page * $nCont;
$pageindex .= sprintf($base_link, $tmpStart, $tmpStart / $num_per_page + 1);
}

// Show the '...' part near the end. (1 ... 6 7 [8] 9 10 >...< 15)
if ($start + $num_per_page * ($PageContiguous + 1) < $tmpMaxPages)
$pageindex .= '<span style="font-weight: bold;" onclick="expandPages(this, \'' . ($flexible_start ? strtr($base_url, array('\'' => '\\\'')) : strtr($base_url, array('%' => '%%', '\'' => '\\\'')) . ';start=%1$d') . '\', ' . ($start + $num_per_page * ($PageContiguous + 1)) . ', ' . $tmpMaxPages . ', ' . $num_per_page . ');" onmouseover="this.style.cursor=\'pointer\';"> ... </span>';

// Show the last number in the list. (1 ... 6 7 [8] 9 10 ... >15<)
if ($start + $num_per_page * $PageContiguous < $tmpMaxPages)
$pageindex .= sprintf($base_link, $tmpMaxPages, $tmpMaxPages / $num_per_page + 1);
}

return $pageindex;
}


Reemplazar por:
function constructPageIndex($base_url, &$start, $max_value, $num_per_page, $flexible_start = false)
{
global $modSettings;

// Save whether $start was less than 0 or not.
$start = (int) $start;
$start_invalid = $start < 0;

// Make sure $start is a proper variable - not less than 0.
if ($start_invalid)
$start = 0;
// Not greater than the upper bound.
elseif ($start >= $max_value)
$start = max(0, (int) $max_value - (((int) $max_value % (int) $num_per_page) == 0 ? $num_per_page : ((int) $max_value % (int) $num_per_page)));
// And it has to be a multiple of $num_per_page!
else
$start = max(0, (int) $start - ((int) $start % (int) $num_per_page));

// Wireless will need the protocol on the URL somewhere.
if (WIRELESS)
$base_url .= ';' . WIRELESS_PROTOCOL;

$base_link = '<li><a class="navPages" href="' . ($flexible_start ? $base_url : strtr($base_url, array('%' => '%%')) . ';start=%1$d') . '">%2$s</a></li>';

// Compact pages is off or on?
if (empty($modSettings['compactTopicPagesEnable']))
{
// Show the left arrow.
$pageindex = $start == 0 ? ' ' : sprintf($base_link, $start - $num_per_page, '&#171;');

// Show all the pages.
$display_page = 1;
for ($counter = 0; $counter < $max_value; $counter += $num_per_page)
$pageindex .= $start == $counter && !$start_invalid ? '<li class="active"><a href="javascript:void(0);">' . $display_page++ . '</a></li>' : sprintf($base_link, $counter, $display_page++);

// Show the right arrow.
$display_page = ($start + $num_per_page) > $max_value ? $max_value : ($start + $num_per_page);
if ($start != $counter - $max_value && !$start_invalid)
$pageindex .= $display_page > $counter - $num_per_page ? ' ' : sprintf($base_link, $display_page, '&#187;');
}
else
{
// If they didn't enter an odd value, pretend they did.
$PageContiguous = (int) ($modSettings['compactTopicPagesContiguous'] - ($modSettings['compactTopicPagesContiguous'] % 2)) / 2;

// Show the first page. (>1< ... 6 7 [8] 9 10 ... 15)
if ($start > $num_per_page * $PageContiguous)
{
$pageindex = $start == 0 ? ' ' : sprintf($base_link, $start - $num_per_page, '&#171;');
$pageindex .= sprintf($base_link, 0, '1');
}
else
{
$pageindex = $start == 0 ? ' ' : sprintf($base_link, $start - $num_per_page, '&#171;');
}

// Show the ... after the first page.  (1 >...< 6 7 [8] 9 10 ... 15)
if ($start > $num_per_page * ($PageContiguous + 1))
$pageindex .= '<li><span style="font-weight: bold;" onclick="' . htmlspecialchars('expandPages(this, ' . JavaScriptEscape(($flexible_start ? $base_url : strtr($base_url, array('%' => '%%')) . ';start=%1$d')) . ', ' . $num_per_page . ', ' . ($start - $num_per_page * $PageContiguous) . ', ' . $num_per_page . ');') . '" onmouseover="this.style.cursor = \'pointer\';"> ... </span></li>';

// Show the pages before the current one. (1 ... >6 7< [8] 9 10 ... 15)
for ($nCont = $PageContiguous; $nCont >= 1; $nCont--)
if ($start >= $num_per_page * $nCont)
{
$tmpStart = $start - $num_per_page * $nCont;
$pageindex.= sprintf($base_link, $tmpStart, $tmpStart / $num_per_page + 1);
}

// Show the current page. (1 ... 6 7 >[8]< 9 10 ... 15)
if (!$start_invalid)
$pageindex .= '<li class="active"><a href="javascript:void(0);">' . ($start / $num_per_page + 1) . '</a></li> ';
else
$pageindex .= sprintf($base_link, $start, $start / $num_per_page + 1);

// Show the pages after the current one... (1 ... 6 7 [8] >9 10< ... 15)
$tmpMaxPages = (int) (($max_value - 1) / $num_per_page) * $num_per_page;
for ($nCont = 1; $nCont <= $PageContiguous; $nCont++)
if ($start + $num_per_page * $nCont <= $tmpMaxPages)
{
$tmpStart = $start + $num_per_page * $nCont;
$pageindex .= sprintf($base_link, $tmpStart, $tmpStart / $num_per_page + 1);
}

// Show the '...' part near the end. (1 ... 6 7 [8] 9 10 >...< 15)
if ($start + $num_per_page * ($PageContiguous + 1) < $tmpMaxPages)
$pageindex .= '<li><span style="font-weight: bold;" onclick="expandPages(this, \'' .($flexible_start ? strtr($base_url, array('\'' => '\\\'')) : strtr($base_url, array('%' => '%%', '\'' => '\\\'')) . ';start=%1$d') . '\', ' . ($start + $num_per_page * ($PageContiguous + 1)) . ', ' . $tmpMaxPages . ', ' . $num_per_page . ');" onmouseover="this.style.cursor=\'pointer\';"> ... </span></li>';

// Show the last number in the list. (1 ... 6 7 [8] 9 10 ... >15<)
if ($start + $num_per_page * $PageContiguous < $tmpMaxPages)
$pageindex .= sprintf($base_link, $tmpMaxPages, $tmpMaxPages / $num_per_page + 1);

for ($counter = 0; $counter < $max_value; $counter += $num_per_page)
$display_page = ($start + $num_per_page) > $max_value ? $max_value : ($start + $num_per_page);
if ($start != $counter - $max_value && !$start_invalid)
$pageindex .= $display_page > $counter - $num_per_page ? ' ' : sprintf($base_link, $display_page, '&#187;');

}

return '<ul class="pagination">'.$pageindex.'</ul>';
}


Display.template.php y MessageIndex.template.php (Themes/tutheme)
Buscar y eliminar todos los:
', $txt['pages'], ':
Title: Re: Reseller
Post by: ForumMix on November 23, 2014, 02:28:15 AM
Thanks    :)
Title: Re: Reseller
Post by: Guliberg on November 23, 2014, 08:50:24 AM
Tal cual como lo dijiste, pero me parece que hay un error en Subs, por que me ha salido así en la zona de los posts, en las paginaciones, ¿qué podría ser?

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FBvc7oo0.png&hash=97d26eec9a2b43929efe90ef9b6800ffc440a37d)
http://i.imgur.com/Bvc7oo0.png

Gracias por tu respuesta.
Title: Re: Reseller
Post by: Guliberg on November 29, 2014, 07:13:00 AM
Up, siento el doble posteo, pero aún sigo sin poder solucionarlo.
Title: Re: Reseller
Post by: Renzo Álvarez on December 10, 2014, 12:25:25 PM
I have a problem with captchas. Not appear .
Title: Re: Reseller
Post by: bry82 on December 11, 2014, 08:55:50 AM
I have a problem with reseller theme. People using internet explorer don't see most avatars, they jut see an "X". 
Title: Re: Reseller
Post by: bry82 on December 12, 2014, 05:35:11 AM
solved moving the uploaded avatars directory.
Title: Re: Reseller
Post by: Tsunami on December 12, 2014, 04:21:22 PM
hola como hago para instalar el logo ?? soy nuevo en esto , instale el tema dice que se adecua al movil pero me fije de un opera y no se adapta a el  :'(
Title: Re: Reseller
Post by: Daniel on December 17, 2014, 04:50:51 PM
Quote from: Tsunami on December 12, 2014, 04:21:22 PM
hola como hago para instalar el logo ?? soy nuevo en esto , instale el tema dice que se adecua al movil pero me fije de un opera y no se adapta a el  :'(

El logo no se instala, es solo un archivo PSD que se abre con photoshop para que tu lo modifiques y luego lo subas al theme. He probado el theme en opera y se ve bien, adjunta imágenes si es posible.
Title: Re: Reseller
Post by: moopasa on December 23, 2014, 04:51:04 AM
Hi all. When the popup Login box appears in reseller, there is no link to redirect the user for "Forgot Password"

Can you please help me add this? See attached screenshot.
Title: Re: Reseller
Post by: namo on December 23, 2014, 05:59:25 PM
Hi daniel. Thanks for the help rendered the other day. Please im thinking of incorporating a facebook like widget on my reseller themed smf forum. as i have the js script codes, how can i put it on the forum? thanks
Title: Re: Reseller
Post by: namo on December 24, 2014, 04:21:12 PM
hi daniel. thanks for past helps given. please is there any other sweet responsive theme suitable for mobiles like your reseller. i really and urgently need one. thanks a million.
Title: Re: Reseller
Post by: Elliiott on December 25, 2014, 04:50:28 PM
También me interesaría una respuesta al respecto.

Es importante implementar eso para que el usuario no se desubique.
Title: Re: Reseller
Post by: Elliiott on December 25, 2014, 11:05:18 PM
Hola amigos como estan tengo el tema Reseller y quiero modificar un poco las cosas.
quiero que cuando en un foro haya un tema nuevo el se ilumine o algo que lo diferencie del resto por que solo si no es por el logo que cambia de off a on no se diferencia si hay mensajes nuevos.

Espero puedan ayudarme adjunto imagen!
Title: Re: Reseller
Post by: bry82 on December 26, 2014, 05:33:16 AM
hi,
I'd like to have vertical child boards on reseller theme. in two columns. Now they are orizontal.
How can I achieve that?
Title: Re: Reseller
Post by: Daniel on December 26, 2014, 05:18:36 PM
Index.template.php
Search:
<div class="checkbox">
<label>
<input name="cookielength" type="checkbox" value="-1" /> ', $txt['rs_remember'] ,'
</label>
</div>

Add after:
<div class="form-group text-center" style="margin-bottom: 0;font-size: 0.9em;">
<label>
<a href="', $scripturl, '?action=reminder">', $txt['forgot_your_password'], '</a>
</label>
</div>


Regards!
Title: Re: Reseller
Post by: Daniel on December 26, 2014, 05:23:09 PM
Premium
zGames: http://smftricks.com/index.php?action=downloads;sa=view;down=80#forum
Free
AlphaCentauri: http://www.simplemachines.org/community/index.php?topic=529335.0
Studio-00X: http://www.simplemachines.org/community/index.php?topic=529072.0
Title: Re: Reseller
Post by: Daniel on December 26, 2014, 05:26:44 PM
See this mod: http://custom.simplemachines.org/mods/index.php?mod=2294
Title: Re: Reseller
Post by: Daniel on December 26, 2014, 05:29:49 PM
You can search smf mods like this: http://custom.simplemachines.org/mods/index.php?mod=3559
Title: Re: Reseller
Post by: bry82 on December 27, 2014, 07:17:34 AM
Quote from: Daniel on December 26, 2014, 05:26:44 PM
See this mod: http://custom.simplemachines.org/mods/index.php?mod=2294

Do you think it's going to work on reseller just by installing it?
Title: Re: Reseller
Post by: Diego Andrés on December 27, 2014, 11:08:51 AM
We also have "Simple Metro" and "LikeIPB", both are fully responsive.

And in simplemachines Bloc has published a few free in the theme previews board
Title: Re: Reseller
Post by: Daniel on December 27, 2014, 12:07:46 PM
You do not lose anything trying. You can always make a backup.
Title: Re: Reseller
Post by: Diego Andrés on January 02, 2015, 12:13:45 AM
Todavía tienes problemas con esto?
Title: Re: Reseller
Post by: Diego Andrés on January 02, 2015, 12:14:40 AM
Te refieres a todo el foro, o solamente el cuadro del icono?
Title: Re: Reseller
Post by: Elliiott on January 02, 2015, 07:05:05 AM
Bueno me refiero a todo el foro, no se bueno vi que si en los sub foros hay nuevos temas aparece la palabra New, pero si un foro no contiene sub foros no aparece nada me gustaría algo así como en los sub foros, en la imagen que adjunte se puede ver que hay un foro con mensajes pero aparte de que el icono se ilumine no hay mas nada que lo indique !!
Y me gustaría que si hay mensaje pues algo mas lo indique aparte de que el icono del foro pase de Off a On.

Title: Re: Reseller
Post by: Diego Andrés on January 02, 2015, 03:57:48 PM
En el BoardIndex.template.php del theme Reseller busca
<tr id="board_', $board['id'], '" class="windowbg4">

Reemplaza por
<tr id="board_', $board['id'], '" class="', (($board['new'] || $board['children_new']) ? 'windowbg' : 'windowbg4'), '">
Title: Re: Reseller
Post by: Guliberg on January 02, 2015, 05:32:58 PM

Sí, sigo teniéndolo como lo mencioné en el comentario anterior.

Quote from: Guliberg on November 23, 2014, 08:50:24 AM
Hice tal cual como lo dijiste, pero me parece que hay un error en Subs, por que me ha salido así en la zona de los posts, en las paginaciones, ¿qué podría ser?

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FBvc7oo0.png&hash=97d26eec9a2b43929efe90ef9b6800ffc440a37d)
http://i.imgur.com/Bvc7oo0.png (http://i.imgur.com/Bvc7oo0.png)

Gracias por tu respuesta.
Title: Re: Reseller
Post by: Diego Andrés on January 04, 2015, 04:52:35 PM
Y tienes esa clase .pagination en tu css?

Podrías revertir eso e intentar con este mod que hace algo parecido http://custom.simplemachines.org/mods/index.php?mod=3235
Title: Re: Reseller
Post by: fabriig2 on January 07, 2015, 06:03:06 PM
hola, cómo están??  instale todos los mods con el theme default de smf 2.0.9 y simple portal 2.3.6 ... siempre con theme default.. ahora se me dio por poner un theme llamado "Reseller" y al instalarlo muchos mods dejaron de funcionar y muchas cosas del theme no aparecen en mi foro... por ejemplo las imagenes en el footer o demas cosas,,, cómo puedo solucionarlo?? y que los mods sigan funcionando bien como antes?? les dejo una imagen con los mods que tengo instalados..

ojala alguien pueda darme una mano gracias y disculpen las molestias!!
Title: Re: Reseller
Post by: Diego Andrés on January 07, 2015, 06:15:20 PM
Es porque generalmente se instalan primero los themes o el theme y después los mods...

Como sabes, algunos mods modifican templates, realizando ciertos cambios y agregando ciertas cosas. En este caso el theme Reseller fue instalado después... Así que tienes que realizar las modificaciones manuales al theme Reseller.

O desinstalar todos los mods y volverlos a instalar pero esta vez marcando el theme Reseller durante la instalación ora instalarlo allí también.

No existe otra solución...

Y por favor no publiques el mismo tema en todos los sitios posibles buscando obtener ayuda más rápidamente, eso solamente le quita el tiempo a los que quizás te intenten ayudar en otros sitios.
Title: Re: Reseller
Post by: fabriig2 on January 07, 2015, 06:18:27 PM
Quote from: Diego Andrés on January 07, 2015, 06:15:20 PM
Es porque generalmente se instalan primero los themes o el theme y después los mods...

Como sabes, algunos mods modifican templates, realizando ciertos cambios y agregando ciertas cosas. En este caso el theme Reseller fue instalado después... Así que tienes que realizar las modificaciones manuales al theme Reseller.

O desinstalar todos los mods y volverlos a instalar pero esta vez marcando el theme Reseller durante la instalación ora instalarlo allí también.

No existe otra solución...

Y por favor no publiques el mismo tema en todos los sitios posibles buscando obtener ayuda más rápidamente, eso solamente le quita el tiempo a los que quizás te intenten ayudar en otros sitios.


Si, es que al ser novato no me dí cuenta lo del theme, y ahora volver a instalar todo nuevamente es un lio jaja!! cuánto me cobras para realizarme el trabajo? :D
Title: Re: Reseller
Post by: Diego Andrés on January 07, 2015, 06:26:04 PM
Lo siento pero no dispongo de tiempo para tomar esto.
Pero lo más recomendable es que los desinstales y los instales de nuevo. Además algo aún más fácil, es que hagas un backup del theme Default, así cuando ya instales los mods de nuevo, solamente reemplazas los archivos pues ya tenias esas modificaciones + las otras que hayas realizado de tutoriales.

Y de esa manera podrías posteriormente basarte en los archivos del theme Default para modificar los del Reseller, por decir un ejemplo el Display.template.php
Title: Re: Reseller
Post by: fabriig2 on January 07, 2015, 06:27:51 PM
Quote from: Diego Andrés on January 07, 2015, 06:26:04 PM
Lo siento pero no dispongo de tiempo para tomar esto.
Pero lo más recomendable es que los desinstales y los instales de nuevo. Además algo aún más fácil, es que hagas un backup del theme Default, así cuando ya instales los mods de nuevo, solamente reemplazas los archivos pues ya tenias esas modificaciones + las otras que hayas realizado de tutoriales.

Y de esa manera podrías posteriormente basarte en los archivos del theme Default para modificar los del Reseller, por decir un ejemplo el Display.template.php

Disculpa pero si por ejemplo bajo el mod "Ultimate profile" por decir un ejemplo, dónde me fijo que modificación necesita para que ande en theme "Reseller" ??
Title: Re: Reseller
Post by: Diego Andrés on January 07, 2015, 06:29:26 PM
Revisando el parse del mod en el modsite, o durante la instalación por ejemplo.

Si el mod modifica por ejemplo Profile.template.php y Reseller no tiene ese archivo, usara el del theme Default.
Title: Re: Reseller
Post by: fabriig2 on January 07, 2015, 06:35:56 PM
Quote from: Diego Andrés on January 07, 2015, 06:29:26 PM
Revisando el parse del mod en el modsite, o durante la instalación por ejemplo.

Si el mod modifica por ejemplo Profile.template.php y Reseller no tiene ese archivo, usara el del theme Default.

Perfecto, gracias (y) reinstare todo nuevamente :D jeje hasta que aprenda :D

Me gusto el tutorial tuyo que hiciste para modificar el display como KM, cómo hago que funcione en reseller?
Title: Re: Reseller
Post by: Diego Andrés on January 08, 2015, 05:56:02 AM
De momento eso no es compatible
Title: Re: Reseller
Post by: Guliberg on January 15, 2015, 06:25:49 PM
Gracias por el mod, lo he usado y edité algo del css, quedó bien.

Otra pregunta... ¿cómo podría colocar el navbar sobre el banner, un poco hacia abajo? como el theme Skyline de Dzinerstudio.
Title: Re: Reseller
Post by: signaleleven on January 19, 2015, 08:43:17 PM
Hello! Thanks for reseller, it's a great theme that I modified a bit for our forum (www.forumastronautico.it)

I have a question though. Since you use bootstrap, the "default" action of the top menu is not clickable.
For example: the Admin option has 4 sub menus (Functions and options, Manage packets, Error log, Permissions), but in other themes, (and as defined in Subs.php) when you click only "Admin" you are sent to ?action=admin, the "home" of the administration area.

With bootstrap, clicking on Admin opens the dropdown menu, and I could not find a way to make clicking on it sending you to ?action=admin.
Is there a way to enable this behavior?
Title: Re: Reseller
Post by: Diego Andrés on January 21, 2015, 06:35:12 AM
I don't know if it's possible.
But one thing we can do is to add the main button as a submenu in the first place in every button that has child buttons.

Don't know if that has sense to you. If not, see our demo site, the Simple Metro or LikeIPB theme
Title: Re: Reseller
Post by: signaleleven on January 21, 2015, 06:50:23 AM
Thanks for your answer, it totally makes sense!
I tried to do it by adding it to SubsMenu.php, directly in the SMF options, but it was not working (and it would influence other users using other themes)
Can you give me a pointer to do it only for Reseller?

My modified version is here https://github.com/ItalianSpaceAstronauticsAssociation/reseller
Title: Re: Reseller
Post by: Diego Andrés on January 23, 2015, 03:43:04 PM
Sorry I've been busy, I'll help you later today ASAP
Title: Re: Reseller
Post by: Diego Andrés on January 24, 2015, 05:18:51 PM
Here you have the PR, just merge it https://github.com/ItalianSpaceAstronauticsAssociation/reseller/pull/1
Title: Re: Reseller
Post by: signaleleven on January 26, 2015, 12:06:16 AM
Quote from: Diego Andrés on January 24, 2015, 05:18:51 PM
Here you have the PR, just merge it https://github.com/ItalianSpaceAstronauticsAssociation/reseller/pull/1

WOW! Exactly what I needed. I merged it already on my test site and it works flawlessly.

YOU ROCK!
What's the best way to thank? Buying credits here on the site?
Title: Re: Reseller
Post by: Diego Andrés on January 26, 2015, 12:17:59 AM
That would be nice, but you don't really need to do that.

Regards.
Please tell us if you need more help.
Title: Re: Reseller
Post by: kingpaco on February 03, 2015, 08:44:03 AM
I installed the Reseller theme, everything looks great but users can't register because the capcha is not displaying the image.  If a user can't register that's a big problem. I want to use this theme but I will have to change it if I can't get the capcha working,  do you have any ideas why this is happening?
Title: Re: Reseller
Post by: InetycL on February 04, 2015, 06:27:35 PM
Hola, quisiera como poner el menú que siga la pantalla, osea si bajo que la barra baje y que siga el scroll, gracias.
Title: Re: Reseller
Post by: Ringooo on February 05, 2015, 12:43:18 PM
Very nice
Title: Re: Reseller
Post by: Afosiado on February 05, 2015, 02:15:41 PM
The theme SMF it's very nice!
Title: Re: Reseller
Post by: Dave_Lich on February 07, 2015, 05:19:16 AM
Hi!
As you already know SMF 2.1 Beta 1 released, and i'm just curious to know would "Reseller" be develop for SMF 2.1?
Title: Re: Reseller
Post by: Diego Andrés on February 07, 2015, 07:31:46 AM
Sure but only after SMF 2.1 reach at least a second RC, or the final/gold version
Title: Re: Reseller
Post by: Dave_Lich on February 07, 2015, 08:01:26 AM
Ok.. Thank you for letting us know :)
Title: Re: Reseller
Post by: zetanight on February 08, 2015, 02:51:05 PM
Hola lo que sucede esque soy nuevo en esto de smf y instale el tema reseller y al intentar registrarme no me muestra la imagen de captcha para verificar y por lo tanto nadie se puede registrar , alguien podria ayudarme :c
(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FKnZQSgW.png&hash=99ac89960ce48c4eb001ff9851ed82e48d83c727)
Title: Re: Reseller
Post by: InetycL on February 08, 2015, 06:33:09 PM
A mi tampoco me funciono lo vi raro, yo lo hice simple y instale recaptcha for smf y listo
Title: Re: Reseller
Post by: Elliiott on February 08, 2015, 07:25:40 PM
Bueno yo tengo el tema Reseller y cuando mis usuarios se registran les va bien no tienen problemas con las capchats
Title: Re: Reseller
Post by: Elliiott on February 08, 2015, 07:58:12 PM
Quote from: InetycL on February 04, 2015, 06:27:35 PM
Hola, quisiera como poner el menú que siga la pantalla, osea si bajo que la barra baje y que siga el scroll, gracias.
Tambien me interesa esto seia chevere asi como el de este tema de foro,
Title: Re: Reseller
Post by: Elliiott on February 08, 2015, 09:11:18 PM
Hola amigos tengo el tema Reseller me a encantado mucho el tema pero quiero adaptarlo a mis requerimientos y bueno una de las cosas que quiero hacer es cambiar el la pestaña por grupos, quiero personalizar un poco mas los perfiles de por grupos ya que ofrezco una membresia y a no ser por el "cartel" no se diferencia mucho las cosas de los demás usuarios.

Lo que quiero en resumen es que si alguien es tiene una membresia GOLD se pueda cambiar los colores de su perfil de usuario en los temas.

¿Esto se podra hacer? ¿Existira algun MOD?

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi62.tinypic.com%2F288xmhl.jpg&hash=cf8c58c90a9c7f3dd80cfc40cd38258e7d6fe4bd)
Title: Re: Reseller
Post by: Elliiott on February 09, 2015, 12:55:41 PM
Quote from: Daniel on December 17, 2014, 04:50:51 PM
El logo no se instala, es solo un archivo PSD que se abre con photoshop para que tu lo modifiques y luego lo subas al theme. He probado el theme en opera y se ve bien, adjunta imágenes si es posible.

Estoy modificando mi tema Reseller y quisiera saber si de alguna forma se pueden cambiar esta imagenes que te señalo en los cuadros rojos, ya intente cambiándolas en la siguiente ruta Themes/Reseller/images/icons/... pero nada siguen igual no se modifican.

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi57.tinypic.com%2Facq25s.jpg&hash=d3760b07367176400a00d624d2ebea505e5a9704)

Title: Re: Reseller
Post by: Daniel on February 09, 2015, 09:11:03 PM
http://www.simplemachines.org/community/index.php?topic=525855.msg3726590#msg3726590
Title: Re: Reseller
Post by: Daniel on February 09, 2015, 09:15:11 PM
Quote from: Elliiott on February 09, 2015, 12:55:41 PM
Estoy modificando mi tema Reseller y quisiera saber si de alguna forma se pueden cambiar esta imagenes que te señalo en los cuadros rojos, ya intente cambiándolas en la siguiente ruta Themes/Reseller/images/icons/... pero nada siguen igual no se modifican.

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi57.tinypic.com%2Facq25s.jpg&hash=d3760b07367176400a00d624d2ebea505e5a9704)
Estan en la siguiente ruta: Themes/Reseller/images
Title: Re: Reseller
Post by: Elliiott on February 09, 2015, 09:30:38 PM
Quote from: Daniel on February 09, 2015, 09:15:11 PM
Estan en la siguiente ruta: Themes/Reseller/images
Bueno si ahí están unos que los de info y los otros están en el dirección que puse pero son .gif y los cambios y nada no se dejan no se si modificando algún archivo y poniéndoles otros nombres si los reconozca. Osea cuando los metos en la carpeta donde están los otros me sale sustituir pero a la final siguen igual no surten efecto.

Es mas incluso las borro de las carpetas donde están alojadas y ahí siguen como si nada jajaja.
Title: Re: Reseller
Post by: AutoCultivo on February 09, 2015, 09:58:16 PM
Felicidades por el theme. Lo he instalado y no veo las miniaturas de imagenes adjuntas en el theme tan sólo un link para poder verlas que abre en otra ventana con el visor de imagenes de windows.

Una ayuda por favor.

Gracias ¡ ¡
Title: Re: Reseller
Post by: Elliiott on February 10, 2015, 10:02:28 PM
Bueno esta viendo la parte final de este foro y vi que tiene todo mejor distribuido y queria saber si habia un MOD que hiciera eso y que peuda ser instalado en el Thema Reseller.

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi58.tinypic.com%2F2vhtdg3.png&hash=c5974d52cf8dde0b10e4c14c5998dd7001db0fb4)
Title: Re: Reseller
Post by: Pipee on February 10, 2015, 10:06:10 PM
Conocí un mod, creo que era de skinmod.

Por otra parte, al igual es hecho manualmente.
Title: Re: Reseller
Post by: Elliiott on February 10, 2015, 10:27:40 PM
Quote from: Pipee on February 10, 2015, 10:06:10 PM
Conocí un mod, creo que era de skinmod.

Por otra parte, al igual es hecho manualmente.
claro me imagino que es hecho manual pero quería saber si era un MOD es que me interesa pero no para colocarlo en esa zona sino para hacer algo diferente por que he visto un foro que no tiene nada que ver con SMF es de otro estilo pero ellos tienen algo interesante y practico para colocar los post recientes, los temas mas leídos y los temas comentados por uno mismo todo con el estilo de solapas que hay ahi y pues estoy buscando algo asi para mis foros SMF.

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi58.tinypic.com%2Fehc5t1.png&hash=0e786cd67eb6f7991cb6148102b077932795f9d7)
Title: Re: Reseller
Post by: Diego Andrés on February 11, 2015, 03:49:43 PM
Prueba con este mod http://custom.simplemachines.org/mods/index.php?mod=3056
Title: Re: Reseller
Post by: Diego Andrés on February 11, 2015, 03:50:51 PM
En los tutoriales hay uno sobre poner un borde lateral del color del rango, podrías manipularlo y utilizarlo para lo que buscas hacer
Title: Re: Reseller
Post by: Elliiott on February 11, 2015, 04:05:39 PM
Quote from: Diego Andrés on February 11, 2015, 03:50:51 PM
En los tutoriales hay uno sobre poner un borde lateral del color del rango, podrías manipularlo y utilizarlo para lo que buscas hacer

Bueno lo intente pero no me funcionopor que se veia interesante :(
Title: Re: Reseller
Post by: Diego Andrés on February 11, 2015, 04:08:10 PM
Adjunta el display.template.php y deja la ID del grupo premium

PD: estoy en el celular, pero en cuanto pueda te realizo los cambios
Title: Re: Reseller
Post by: Elliiott on February 11, 2015, 04:40:56 PM
Quote from: Diego Andrés on February 11, 2015, 04:08:10 PM
Adjunta el display.template.php y deja la ID del grupo premium

PD: estoy en el celular, pero en cuanto pueda te realizo los cambios

Ahi te adjunto, pero no se a que te refieres de ID del grupo premium??
Title: Re: Reseller
Post by: Diego Andrés on February 11, 2015, 04:44:31 PM
En la administración al editar un grupo por ejemplo, veras un numero en la URL, esa es la id del grupo.
Title: Re: Reseller
Post by: Elliiott on February 11, 2015, 04:55:21 PM
Quote from: Diego Andrés on February 11, 2015, 04:44:31 PM
En la administración al editar un grupo por ejemplo, veras un numero en la URL, esa es la id del grupo.

Bueno la cuestion es que son varios grupos y pues no se si puedes explicarme para yo hacerlo de todos modos te dejo esto no se si sera eso members;group=9

Al intentar hacerlo con este tutorial http://smftricks.com/index.php?topic=244.0#forum me sal error de plantilla recuerda que uso el tema Reseller y no se si pues se pueda aplicar a ese tema.
Title: Re: Reseller
Post by: Elliiott on February 12, 2015, 08:58:18 AM
Quote from: Diego Andrés on January 02, 2015, 03:57:48 PM
En el BoardIndex.template.php del theme Reseller busca
<tr id="board_', $board['id'], '" class="windowbg4">

Reemplaza por
<tr id="board_', $board['id'], '" class="', (($board['new'] || $board['children_new']) ? 'windowbg' : 'windowbg4'), '">
Bueno hice eso y no paso nada no se en realidad para que es esto!!
Title: Re: Reseller
Post by: Diego Andrés on February 12, 2015, 09:01:35 AM
Para que se vea de un color diferente cuando hay mensajes nuevos
Title: Re: Reseller
Post by: Elliiott on February 12, 2015, 03:05:17 PM
Quote from: Diego Andrés on February 12, 2015, 09:01:35 AM
Para que se vea de un color diferente cuando hay mensajes nuevos

que se vea de un color diferente que ?? la categoría o como ??
Title: Re: Reseller
Post by: Diego Andrés on February 12, 2015, 03:47:10 PM
El foro o la sección, pues es lo que pediste en el tema
Title: Re: Reseller
Post by: Elliiott on February 12, 2015, 05:10:08 PM
Quote from: Diego Andrés on February 12, 2015, 03:47:10 PM
El foro o la sección, pues es lo que pediste en el tema

Si ya me fije disculpa, me di cuenta que cuando hay un nuevo mensaje se pone esa zona de color blanco y antes era gris, ahora si se diferencia mas,
Gracias amigo si puedes ayúdame con lo del color por grupos de usuarios en los post ahi esta el tema en la sección de soporte de temas.
Title: Re: Reseller
Post by: JmVD on February 13, 2015, 12:36:53 PM
Hola amigos, vengo a solicitar su ayuda, recién instale el theme Reseller en mi foro, pero el log de errores se me está llenando muy rápido y la base de datos llega a 50mb en 1 día,  este se vacía una vez al día pero mientras tanto se llena y se llena, y con ello el foro se relentiza.

Los errores que me está dando son:

http://actvlatino.com/forum/index.php?action=forumAplicar
8: Undefined index: sub_buttons
/home/public_html/forum/Themes/Reseller/index.template.php
Línea: 403

URLhttp://actvlatino.com/forum/index.php?action=profileAplicar
8: Undefined index: sub_buttons
/home/public_html/forum/Themes/Reseller/index.template.php
Línea: 401

Espero me puedan ayudar, y decirme que es lo que tengo que corregir para poder quitar los errores...

Muchas Gracias!
Title: Re: Reseller
Post by: Diego Andrés on February 13, 2015, 08:12:05 PM
Podrías explicar con una imagen o un link?
Title: Re: Reseller
Post by: Diego Andrés on February 13, 2015, 08:12:31 PM
En cuanto disponga de un espacio libre te brindaré ayuda con esto
Title: Re: Reseller
Post by: Diego Andrés on February 13, 2015, 08:14:56 PM
Estoy seguro de que el theme no genera eso por default, estás seguro de que no lo está causando algún mod que hayas instalado?
Desactiva la evaluación de plantillas si persiste para conocer con mayor exactitud de dónde proviene.
Title: Re: Reseller
Post by: Elliiott on February 13, 2015, 08:16:27 PM
Quote from: Diego Andrés on February 13, 2015, 08:12:31 PM
En cuanto disponga de un espacio libre te brindaré ayuda con esto
Dale amigo muchas gracias por estar pendiente saludos espero no te olvides  ;D
Title: Re: Reseller
Post by: Paracelsus on February 25, 2015, 06:10:23 PM
Hello there,

In this part:
Quote from: Daniel on August 16, 2014, 09:22:41 PM
3.- 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>';
}


If you want to make a button menu that is composed by: "Reply" and then "+" button separately with the remaining options (meaning not buttons for all options neither just a + for all options), how would the code look like?
Title: Re: Reseller
Post by: Diego Andrés on February 25, 2015, 08:27:14 PM
Prueba con el siguiente archivo.
Para agregar más grupos, abre el archivo y justo en las primeras líneas verás algo como

$premium_groups = array(9);

simplemente pones tus ids dentro del array y los separas por comas:

$premium_groups = array(9,4,2,1);
Title: Re: Reseller
Post by: pharaoh on March 02, 2015, 05:08:21 AM
Thank Very nice
Title: Re: Reseller
Post by: dhayzon on March 04, 2015, 05:52:23 PM
si colocan la id del grupo en un clase padre... después  se puede manipular con css fácilmente
Title: Re: Reseller
Post by: Elliiott on March 07, 2015, 08:02:21 PM
Quote from: Diego Andrés on February 25, 2015, 08:27:14 PM
Prueba con el siguiente archivo.
Para agregar más grupos, abre el archivo y justo en las primeras líneas verás algo como

$premium_groups = array(9);

simplemente pones tus ids dentro del array y los separas por comas:

$premium_groups = array(9,4,2,1);
Gracias man quedo muy bien!!
Title: Re: Reseller
Post by: Elliiott on March 07, 2015, 08:38:05 PM
Hola amigos tengo un problema con el chat de SMFPacks Shoutbox, por que cuando lo instalo queda desconfigurado la parte de envió de mensajes y de los botones de emoticones, cambio de letras y todo eso.
Quería saber se puede ajustar modificando algo??

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi62.tinypic.com%2F121pi0y.png&hash=da35f2ac174e52c6ac1ece1535898ca6a350adf0)
Title: Re: Reseller
Post by: Daniel on March 07, 2015, 11:11:17 PM
Deja el link de tu foro.
Title: Re: Reseller
Post by: FelixHalim on March 12, 2015, 02:41:57 AM
any alternative for better layout for the mobile-use ? the avatar seems very big for mobile-view especially when we use it landscape. any way to make it smaller?
Title: Re: Reseller
Post by: rumosdio on March 15, 2015, 08:11:39 AM
Hey!

I also use this theme!

SimplePortal rotors are not really compatible, according to Google. I attach pictures.

How can you move it to a responsive theme SimplePortal?

Google Translate
Title: Re: Reseller
Post by: adrelanos on March 15, 2015, 03:50:00 PM
I suppose the big login button is a javascript one. So are the drop down menus in the main menu.

Your demo page (http://demo.smftricks.com/index.php?theme=50) works for me. Although it is still on 2.0.7 while our forum is at 2.0.9. So it's likely not a browser issue on my side.

Any idea why the buttons are broken? Is the reseller theme ready for 2.0.9 yet?
Title: Re: Reseller
Post by: Daniel on March 15, 2015, 10:56:42 PM
Maybe you have a problem jquery library. What is your website?
Title: Re: Reseller
Post by: Daniel on March 15, 2015, 11:01:41 PM
Quote from: rumosdio on March 15, 2015, 08:11:39 AM
Hey!

I also use this theme!

SimplePortal rotors are not really compatible, according to Google. I attach pictures.

How can you move it to a responsive theme SimplePortal?

Google Translate
This post is not for support. Anyways..
Themes/default/css/portal.css

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

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

Themes/Reseller/css/indes.css
Add to the end:
@media (max-width: 991px) {
#sp_left, #sp_right
{
display: none;
}
}
Title: Re: Reseller
Post by: rumosdio on March 16, 2015, 01:27:16 AM
Quote from: Daniel on March 15, 2015, 11:01:41 PM
This post is not for support. Anyways..
Themes/default/css/portal.css

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

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

Themes/Reseller/css/indes.css
Add to the end:
@media (max-width: 991px) {
#sp_left, #sp_right
{
display: none;
}
}



Thank you, I'll try.
Title: Re: Reseller
Post by: adrelanos on March 16, 2015, 08:18:48 AM
Quote from: Daniel on March 15, 2015, 10:56:42 PM
What is your website?
https://www.whonix.org/forum/index.php?theme=3
Title: Re: Reseller
Post by: Daniel on March 16, 2015, 11:56:35 AM
Attatch your index.template.php
Title: Re: Reseller
Post by: adrelanos on March 16, 2015, 12:13:25 PM
Sure. Done.
Title: Re: Reseller
Post by: rumosdio on March 17, 2015, 12:41:29 AM
After installation template was also prepared two errors.

- The top menu bar, a drop-down menu on the wrong links

- The menu editor lite is not working properly, the links can not be edited.

The module also tried to reinstall, but the same was so bad.

Can you even in this help?
Title: Re: Reseller
Post by: rumosdio on March 17, 2015, 12:04:27 PM
Tapping on the surface is too small.

Which file should be edited to be good?

Were you describe your patch?

I have attached pictures.
Title: Re: Reseller
Post by: Daniel on March 17, 2015, 04:21:53 PM
As I said, for support use the following board: http://smftricks.com/index.php?board=40.0#forum
Title: Re: Reseller
Post by: Daniel on March 17, 2015, 04:26:16 PM
Try with this.
Title: Re: Reseller
Post by: adrelanos on March 17, 2015, 05:16:10 PM
Doesn't work for me.

But now I have a speculation. In firefox/chromium developer tools, network, I don't see any requests for http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js. Could perhaps be because of our ssl settings.

Not the case here, but also a content security policy could break this, I guess.

I don't like fetching content from google anyhow, for both, privacy and performance reasons.

I guess it's a good idea to try fetching /ajax/libs/jquery/2.1.1/jquery.min.js from a local resource?
Title: Re: Reseller
Post by: Daniel on March 17, 2015, 05:21:58 PM
Ok, use this index.template.php and upload jquery.min.js to the following path: Themes/Reseller/scripts.
Title: Re: Reseller
Post by: adrelanos on March 17, 2015, 06:01:39 PM
Success now, but...

- Used the original one + local file path: doesn't work for me.

- Used the first one you uploaded here + local file path: works for me.

- Second one you uploaded here: untested by me.

(Downloaded from here: http://code.jquery.com/jquery-2.1.3.min.js)

Would it help if I tested the second one also?
Title: Re: Reseller
Post by: rumosdio on March 18, 2015, 02:15:40 AM
Tapping on the surface is too small.

Which file should be edited to be good?

Were you describe your patch?

I have attached pictures.
Title: Re: Reseller
Post by: Dave_Lich on March 21, 2015, 07:10:47 AM
I need to change the color of blue color area that located under main menu. Can you please tell me how to do it?
Title: Re: Reseller
Post by: tam123456 on March 22, 2015, 03:33:01 PM
Hi,
What a great theme btw :) I have one issue and hope someone can advise?
I don't want guests seeing any stats so I have disabled them viewing info center, however, they can still see total members, total posts in the bar just below logo section on the right hand side. Is there a way to hide these from guests?

Any help appreciated

Thanks in advance
Title: Re: Reseller
Post by: tam123456 on March 22, 2015, 04:44:43 PM
I have now resolved this by editing a template. 8)
Title: Re: Reseller
Post by: Daniel on March 24, 2015, 07:37:31 PM
Quote from: adrelanos on March 17, 2015, 06:01:39 PM
Success now, but...

- Used the original one + local file path: doesn't work for me.

- Used the first one you uploaded here + local file path: works for me.

- Second one you uploaded here: untested by me.

(Downloaded from here: http://code.jquery.com/jquery-2.1.3.min.js)

Would it help if I tested the second one also?
The second one the only thing I made is add the local file path and change the position of the code to the original. Long as it works, everything is fine.
Title: Re: Reseller
Post by: Daniel on March 24, 2015, 07:41:26 PM
Reseller.css (Themes/Reseller/css)
Search:
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
}

And change #3498db and #9fc6e0 for the colors that you want. Here is a page that can help you: http://www.color-hex.com/
Title: Re: Reseller
Post by: Daniel on March 24, 2015, 07:47:10 PM
Can you leave the image in english?
Title: Re: Reseller
Post by: fodor12 on March 25, 2015, 11:39:14 AM
This theme super..  Whoaa i love smf tricks
Title: Re: Reseller
Post by: Dave_Lich on March 29, 2015, 02:14:30 AM
Quote from: Daniel on March 24, 2015, 07:41:26 PM
Reseller.css (Themes/Reseller/css)
Search:
header
{
background: #3498db;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
}

And change #3498db and #9fc6e0 for the colors that you want. Here is a page that can help you: http://www.color-hex.com/

Thanks  :)
Title: Re: Reseller
Post by: jeffrey on March 31, 2015, 03:32:35 AM
Yep man, you should post an english result. Try on this link https://developers.google.com/speed/pagespeed/insights/?hl=en
This is the result for the inches to pixels converter webpage (http://www.ninjaunits.com/convert-inches-pixels/) on my website. Anyone know how to fix these errors? Thank you!
(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FsF0kUkk.png&hash=e16c7d4013a1fb64b4e59c957c9069cb9f485932)
Title: Re: Reseller
Post by: Daniel on March 31, 2015, 09:54:18 PM
I have just analyze the web and I don't see what you point in the picture.

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FF4Mh83L.png&hash=4f7f947be8990281a81aef6ec2666f52250468cc)
Title: Re: Reseller
Post by: hurricanegirl on April 01, 2015, 02:39:22 PM
Hi!
First of all I would like to say thank you for all the themes you have here, free and premium, they are all awesome!!

I was trying to figure this out myself so I wouldn't bother you as you seem very busy but I really can't find a solution for this. I wanted to center my header. I see I can add a bigger size logo, but it aligns to the left of the theme (where the reseller logo is currently situated). Well I wanted it to be centered and at least 1000px wide. Is that possible? --- Kind of like your zGames theme, but not a slideshow, just a sticky image banner at the top.

Can you help me out?

Thanks. :)
Title: Re: Reseller
Post by: Diego Andrés on April 03, 2015, 09:49:34 AM
That will cause the user info go down, doesn't care?
Title: Re: Reseller
Post by: Jasiels on April 26, 2015, 04:29:13 PM
A ver si esta ves si me pueden ayudar, solo quiero ayuda con el theme reseller, quiero ponerle las celdas de kekomundo
segui este tutorial http://smftricks.com/index.php?topic=47.0 que es como quiere que este mi foro, pero en el theme reseller no encuentro los mismos textos en el display.template ni en el index.css y no se mucho de programacion, quiero el theme para una futura version de mi web, que es http://habboworld.org
espero me puedan ayudar esta ves, adjuntare mis archivos
Title: Re: Reseller
Post by: fortitude on May 02, 2015, 03:20:31 PM
Hello

I have couple of questions regarding Reseller theme.

1. Menu - How do I make it drop down on hover?
    Also, how to make it fixed?

2. When I'm inside of thread I can see on top right number of replies and views.
    I'd like it to say  for example   

   7 replies & 20 views

  so, yeah, I'd like to add & which would be the same height as that text, but different color.

3. How to stilize BIG TITLE OF THREAD that shows when I'm inside of thread? I'd like it to be inside of uncolored box.

4. How to stilize    « previous next » (put it in button boxes) and also make it look like this « previous | next »

5. I've decided to put logo with white background in header, and make background white.
    But then I can't see text  Profile | Forum Profile | Recent Unread Topics | Updated topics  <- how to change color of that text?

Lots of questions, I know. I hope for help. :)
Title: Re: Reseller
Post by: Diego Andrés on May 04, 2015, 11:38:21 PM
A few questions might have been answered already in here http://www.simplemachines.org/community/index.php?topic=525855.0
Title: Re: Reseller
Post by: Jasiels on May 05, 2015, 12:33:11 AM
No dan soporte aquí verdad
Title: Re: Reseller
Post by: Diego Andrés on May 05, 2015, 12:45:09 AM
Sucede que ese tutorial esta basado en el theme Default. Reseller es un theme MUY diferente, además incluir ese display podría ser contraproducente para el propósito Responsive del theme Reseller.

Y si damos soporte, pero últimamente hay muy poco tiempo disponible. Pero igual al ser gratuito el theme, la ayuda es mutua entre otros usuarios que también lo usan, o eso se espera :P
Title: Re: Reseller
Post by: fortitude on May 06, 2015, 04:37:01 PM
this theme used to have such good support, and now nothing  ???
I've been waiting for days for answer but I've only found out how to make it fixed, and that was not exactly as I wanted  ???
Title: Re: Reseller
Post by: Daniel on May 07, 2015, 12:05:12 PM
Quote from: fortitude on May 06, 2015, 04:37:01 PM
this theme used to have such good support, and now nothing  ???
I've been waiting for days for answer but I've only found out how to make it fixed, and that was not exactly as I wanted  ???
Sorry, but I've been busy lately, with classes and with some outstanding things I could not answer. I'll try to let the solutions on the weekend.
Title: Re: Reseller
Post by: Daniel on May 12, 2015, 08:44:23 PM
1 question
Index.template.php (Themes/Reseller)
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(){
$(".dropdown").hover(           
function() {
$(".dropdown-menu", this).stop( true, true ).fadeIn("fast");
$(this).toggleClass("open");   
},
function() {
$(".dropdown-menu", this).stop( true, true ).fadeOut("fast");
$(this).toggleClass("open");             
});
$("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:
<nav class="navbar navbar-default navbar-static-top" role="navigation">
Replace with:
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
Search:
<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"' : '', '>

Replace with:
<a ', $button['sub_buttons'] ? 'class="dropdown-toggle" ' : '', 'href="', $button['sub_buttons'] ? '#' : $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '>


Reseller.css (Themes/css)
Search:
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;
}


2 question

Reseller.css (Themes/Reseller/css)
Search:
.display-info ul.info li
{
float: left;
font-size: 1.5em;
margin-left: 5px;
}
.display-info ul.info li.replies
{
color: #5bc0de;
}
.display-info ul.info li.replies img, .display-info ul.info li.views img
{
width: 64px;
}
.display-info ul.info li.views
{
color: #f0ad4e;
}

Replace with:
.display-info ul.info li
{
float: left;
font-size: 1.5em;
margin-left: 5px;
color: #000;
}
.display-info ul.info li.replies img, .display-info ul.info li.views img
{
width: 64px;
}

If you want change the size of the text. Change font-size: 1.5em; for what you want, the same with the color: color: #000;. For the img, you can change the width: width: 64px;, if you want hide the img, use this: display: none; after width: 64px;

3 question
Reseller.css (Themes/Reseller/css)
Search:
.display-info
{
text-align: center;
overflow: hidden;
}

Replace with:
.display-info
{
text-align: center;
overflow: hidden;
background: #E1E1E1;
border-radius: 5px;
border: 1px solid #CCC;
padding: 15px;
}


4 question
Reseller.css (Themes/Reseller/css)
Add to the end:
.nextlinks{
margin-bottom: 15px;
}
.nextlinks a
{
background: #FFF;
border: 1px solid #e1e1e1;
padding: 8px 15px;
font-weight: bold;
border-radius: 5px;
transition: all .1s;
}
.nextlinks a:hover
{
background: #e1e1e1;
text-decoration: none;
}
.nextlinks a:first-of-type
{
float: left;
}


5 question
Reseller.css (Themes/Reseller/css)
Search:
header ul.reset li, header ul.reset li a
{
color: #FFF;
font-family: "Segoe UI";
font-size: 12px;
}

Replace with:
header ul.reset li, header ul.reset li a
{
color: #000;
font-family: "Segoe UI";
font-size: 12px;
}
Title: Re: Reseller
Post by: fortitude on May 13, 2015, 02:21:33 PM
hey!

First of all, thank you a lot! Tho, I have some things that you misunderstood.
Like: 2) I actually don't know how to add symbol &  in php, between replies and views, so that was what I was asking.

3) Looks acceptable, but I didn't actually want box to include replies and views, just the title itself.

4)Previous and Next are stylized, and I'm actually quite satisfied how it looks, in spite of the fact
that those on top were not the one I wanted to be stylized, but those on bottom were.
Could you tell me how to stylize those on bottom as well?
:)


p.s. extra question: can I snatch these icons? that is , are they free to use: (https://smftricks.com/Themes/SMFTricks/images/post/xx.gif) (https://smftricks.com/Themes/SMFTricks/images/post/lamp.gif)
Title: Re: Reseller
Post by: Daniel on May 16, 2015, 01:00:28 PM
2 question
Display.template.php
Search:
<li class="replies"><img src="',$settings['images_url'] ,'/messages.png" /> '. $context['real_num_replies'] .' '. $txt['replies'] .'</li>
<li class="views"><img src="',$settings['images_url'] ,'/views.png" /> ', $context['num_views'], ' '. $txt['views'] .'</li>

Replace (with img):
<li class="replies"><img src="',$settings['images_url'] ,'/messages.png" /> '. $context['real_num_replies'] .' '. $txt['replies'] .'&nbsp;&#38;</li>
<li class="views"><img src="',$settings['images_url'] ,'/views.png" /> ', $context['num_views'], ' '. $txt['views'] .'</li>

Replace (without img):
<li class="replies">'. $context['real_num_replies'] .' '. $txt['replies'] .'&nbsp;&#38;</li>
<li class="views">', $context['num_views'], ' '. $txt['views'] .'</li>


3 question
Reseller.css
Search:
.display-info
{
text-align: center;
overflow: hidden;
}
.display-info h1
{
font-size: 36px;
}

Replace with:
.display-info
{
text-align: center;
overflow: hidden;
}
.display-info h1
{
font-size: 36px;
background: #E1E1E1;
border-radius: 5px;
border: 1px solid #CCC;
padding: 15px;
}


4 question
Reseller.css
Use this code, add to the end:
.nextlinks, .nextlinks_bottom{
margin-bottom: 15px;
}
.nextlinks_bottom{
clear: both !important;
}
.nextlinks a, .nextlinks_bottom a
{
background: #FFF;
border: 1px solid #e1e1e1;
padding: 8px 15px;
font-weight: bold;
border-radius: 5px;
transition: all .1s;
}
.nextlinks a:hover, .nextlinks_bottom a:hover
{
background: #e1e1e1;
text-decoration: none;
}
.nextlinks a:first-of-type, .nextlinks_bottom a:first-of-type
{
float: left;
}


PD: Yes, you can.

Greetings!
Title: Re: Reseller
Post by: fortitude on May 16, 2015, 03:11:56 PM
hah, you just can't get rid of me. Thank you so very much, and yet I have some questions still;

a) in my 3rd question this box now includes only title, and that is good. what is bad is that I was hoping for an actual nice box
that would surround only title, however is spreads through whole main content section width. is there any way to make that width smaller???

b) would you please help me with incorporating this jsfiddle (http://jsfiddle.net/x8ftLq7e/) in breadcrumbs of forum theme?
Title: Re: Reseller
Post by: Elliiott on May 17, 2015, 03:46:41 PM
Hola amigos estoy colocando este tema en una foro que estamos creando recientemente pero queremos saber si es posible colocar en Negrita los títulos de las categorías y de de los foros, también quiero saber si era posible que el nombre de los Moderadores de cada categoria aparezca en negrita y con el color descuerdo al grupo a que pertenezca. Les dejo captura

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi57.tinypic.com%2F20h80zk.png&hash=212c43fa99e6e5aace29e54d03c2735699edee28)

Title: Re: Reseller
Post by: Daniel on May 19, 2015, 07:18:56 PM
Reseller.css
Agregar al final:
h3.catbg, a.subject, p.moderators
{
font-weight: bold;
}

Y utiliza este mod: http://custom.simplemachines.org/mods/index.php?mod=3067 para colorear a los moderadores.
Title: Re: Reseller
Post by: fortitude on May 26, 2015, 04:28:20 AM
hello?

any news about this?  :P
Title: Re: Reseller
Post by: Daniel on May 26, 2015, 06:04:10 PM
a) You mean something like this: http://prntscr.com/79skjl ?

b) Index.css
Search:
/* The navigation list (i.e. linktree) */
.navigate_section
{
padding: 0;
margin: 0 0 20px;
background: #FFF;
}

Replace with:
/* The navigation list (i.e. linktree) */
.navigate_section
{
padding: 0;
margin: 20px 0;

}
#crumbs {
padding: 7px 0px;
}

#crumbs ul {
list-style: none;
/*display: inline-table;*/
display: table-row;
}
#crumbs ul li {
display: inline;
}

#crumbs ul li a {
display: block;
float: left;
height: 12.5px;
background: #34495e;
text-align: center;
padding: 7.5px 10px 23px 20px;
position: relative;
margin: 0 1px 0 0;
font-size: 12px;
text-decoration: none;
color: #ecf0f1;
}

#crumbs ul li a:after {
content: ""; 
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-left: 10px solid #34495e;
position: absolute; right: -10px; top: 0;
z-index: 1;
}

#crumbs ul li a:before {
content: ""; 
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-left: 10px solid #d4f2ff;
position: absolute; left: 0; top: 0;
}

#crumbs ul li:first-child a {
border-top-left-radius: 7px;
border-bottom-left-radius: 7px;
}
#crumbs ul li:first-child a:before {
display: none;
}

#crumbs ul li:last-child a {
padding-right: 20px;
border-top-right-radius: 7px;
border-bottom-right-radius: 7px;
background-color: #8e44ad;
}
#crumbs ul li:last-child a:after {
display: none;
}

#crumbs ul li a:hover {
background: #3498db;
}
#crumbs ul li a:hover:after {
border-left-color: #3498db;
}

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 with:

// 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="container">
<div class="row">
<div class="navigate_section" id="crumbs">
<ul>';

// 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 '
</ul>
</div>
</div>
</div>';

$shown_linktree = true;
}
Title: Re: Reseller
Post by: fortitude on May 27, 2015, 02:44:13 AM
Quote from: Daniel on May 26, 2015, 06:04:10 PM
a) You mean something like this: http://prntscr.com/79skjl ?


yes, I indeed mean something like that.  :)

& thank you so much for that crumbs menu. looks great! :D


btw. I've noticed that my previous and next links are not aligned;
I'm not sure would you need my .css file for that or?

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FvJ1pokI.png&hash=d81281a90d2f8dcde591b2d6c238779648ad4fa0)
Title: Re: Reseller
Post by: fortitude on June 03, 2015, 11:01:45 AM
I hope my persistence and nagging shall hopefully have effect and those few questions shall be answered.
It's been a blank week  with no reply. :P
Title: Re: Reseller
Post by: Daniel on June 03, 2015, 02:23:46 PM
Sorry i forget this.
1 error
Reseller.css

Search:
.nextlinks_bottom{
clear: both !important;
}

Replace with:
.nextlinks_bottom{
clear: both !important;
padding-top: 15px;
}



a question
Reseller.css

Search:
.display-info
{
text-align: center;
overflow: hidden;
}
.display-info h1
{
font-size: 36px;
background: #E1E1E1;
border-radius: 5px;
border: 1px solid #CCC;
padding: 15px;
}

Replace with:
.display-info
{
overflow: hidden;
}
.display-info div
{
font-size: 36px;
text-align: center;
background: #3498db;
border-radius: 5px;
padding: 15px;
margin: 0 auto;
color: #FFF;
font-weight: bold;
display: table;
}

Display.template.php
Search:
<div class="display-info">
<h1>
', $context['subject'], '
</h1>

Replace with:
<div class="display-info">
<div>
', $context['subject'], '
</div>


Greetings!!
Title: Re: Reseller
Post by: fortitude on June 03, 2015, 05:16:47 PM
thank you Daniel,

yet, this is really strange, but left one (previous )is for some reason lower than the right one (next),
and when I add padding it applies to both, and solution doesn't help.
Title: Re: Reseller
Post by: Daniel on June 03, 2015, 05:34:02 PM
You have to undo the previous change. Do this:
Reseller.css
Search:
.nextlinks, .nextlinks_bottom{
margin-bottom: 15px;
}

Replace with:
.nextlinks, .nextlinks_bottom{
margin-bottom: 15px;overflow:hidden;
}

Add to the end:
.nextlinks a:last-of-type, .nextlinks_bottom a:last-of-type
{
float: right;
}
Title: Re: Reseller
Post by: fortitude on June 06, 2015, 09:43:56 AM
You're a true sport, Daniel!  O:-)  This solved everything, THANKS   :D

I'm affraid to bother you any more, haha, tho I still have some questions up my sleeve.  :-[
Title: Re: Reseller
Post by: amrit on June 06, 2015, 07:06:29 PM
Hi, first of all thank you for making such a great theme :)

However I am experiencing some issues with it, I have read all your support topics on SMF and also read support topics here but nothing seems to be working for me.
1. How do I completely remove responsiveness from reseller theme?
2. How do I add space between left, right and middle block on simple portal? I have read your reply on here http://www.simplemachines.org/community/index.php?topic=525855.msg3728281#msg3728281   but it only worked for google chrome, not for mozilla and IE. I tried clearing cache and everything.
3. I want to use user information in posts from wrap theme in reseller theme? how do I go about that?
4. How to increase the width of theme? again i tried searching for div container which you mentioned here http://www.simplemachines.org/community/index.php?topic=525855.msg3728281#msg3728281 but i did not find it in any css.
again thank you for your time and this great theme :)
Title: Re: Reseller
Post by: Diego Andrés on June 07, 2015, 11:06:37 AM
Why do you want to remove responsiveness?
Title: Re: Reseller
Post by: amrit on June 07, 2015, 07:01:16 PM
Quote from: Diego Andrés on June 07, 2015, 11:06:37 AM
Why do you want to remove responsiveness?
Hi , i have a wall system integrated on main page in simple portal and simple portal doesn't work properly with responsive themes so that is why i want to remove responsiveness.
Title: Re: Reseller
Post by: Diego Andrés on June 07, 2015, 07:36:26 PM
There are a few post in the support topic (on smf) about making simple portal "responsive"
Title: Re: Reseller
Post by: amrit on June 07, 2015, 09:22:11 PM
Quote from: Diego Andrés on June 07, 2015, 07:36:26 PM
There are a few post in the support topic (on smf) about making simple portal "responsive"
Is it possible if i can hire you or the developer of this theme to do customisations for me? :)
Title: Re: Reseller
Post by: xpresskonami on June 08, 2015, 04:01:57 PM
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

Already Post it here
http://www.simplemachines.org/community/index.php?topic=525855.180;topicseen
Title: Re: Reseller
Post by: odie on June 15, 2015, 01:15:37 AM
Hi Daniel, I really like the theme and the changes within this thread however I have a problem with the right margin when I go from main category screen to within category and also when viewing threads.

Can you assist?
Title: Re: Reseller
Post by: zilre on June 29, 2015, 12:02:32 PM
Amigos Como cambio el ancho de mi foro?

Uso: Reseller
Quiero que sea de todo el Ancho


PD. Gracias de antemano
Title: Re: Reseller
Post by: strano^^ on July 02, 2015, 05:31:36 AM
Hi to all, i've a problem with mobile visualization of the theme.

Actually i've SMF 2.0.10 and Simple Portal activated.
I've modified simple portal to hide the column in the mobile visualization.

When i open the site with my Nexus4+Firefox the site is zoomed and the menu bar cover all the width.
Obviously i've to zoom out the site and the menubar doesn't adapt to the new width.
Why? Those are two screen:
At start with the site zoomed:
(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi58.tinypic.com%2F242ygbk.png&hash=db094cac6f45d8aa60493630bae19c767476bf01)

After the zoom out:
(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi58.tinypic.com%2F35k90mh.png&hash=3ed9fe36feb0070abb7327fc594913239152d445)
Title: Re: Reseller
Post by: strano^^ on July 04, 2015, 03:12:49 AM
It was a problem with simple portal.

In the CSS, portal.css, i've replaced


body{
min-width: 750px;


with


body{
min-width: device-width;
Title: Re: Reseller
Post by: pasqualino77 on July 15, 2015, 11:53:02 AM
I have have this problem

see attach ...

With curve i don't have a problem .. why i see fake error image?
Title: Re: Reseller
Post by: pasqualino77 on July 17, 2015, 10:06:57 AM
Hi i dont want se a drop menu. i have 2 simbol +

see this image

See image
Title: Re: Reseller
Post by: upgraders on July 25, 2015, 03:39:11 PM
Hello Daniel,  You have an amazing beautiful theme and thank you for your efforts.  I have spent most of the day reading from your replies in two different forums just to make sure my problem was not already discovered.  I saw a couple of people mention it but I think they got lost in the thread as they were never replied to. 

The problem that I have is two fold but it is in regards to the responsive image resizing.  The reseller.css has the max-width: 100% for the img tags and they  work great, except in two areas on your theme.  I, like many others are using the Ad Seller Pro from SMFhacks that uses the tables on either side of the theme pages. When using Chrome the images remain very small.  using chrome if you go to here http://www.vapeshopforum.com/index.php  and look to the right banor.  Now if you open the same page in IE the problem is gone the image is perfect, however if you try to resize the Chrome remains small but IE is not responsive. 

Now if you resize and look at a post, http://www.vapeshopforum.com/index.php?topic=5.0  the avatar gets much bigger (so in mobile this takes up a lot of room, rather than get smaller. 

I have tried editing the DIV tags and SMFHacks is also trying to figure out a solution. You are a brilliant person, so my hope lie in a solution from you.  I hope you can find the time to help as I am running out of time to get this done. 

I found several articles on the same problem.  I tried to do this http://jsfiddle.net/TAE3w/21/ and borrowed the same code since ti seems to work in the table. But eh table I think at least the TD is the problem.  If you inspect the elements on my page you can see it is exactly the same, yet the banner on the top right is super small and the SAME one on the bottom is very large.

Thanks for everything you do for SMF

Jason

Title: Re: Reseller
Post by: Diego Andrés on July 26, 2015, 07:57:46 PM
Mmm there's a chance that the mod could work just fine using bootstrap.
Please attach index.template.php and BoardIndex.template.php of the Reseller theme
Title: Re: Reseller
Post by: upgraders on July 27, 2015, 03:29:01 AM
Thanks for your help. I have attached both files as you requested.

Jason
Title: Re: Reseller
Post by: Diego Andrés on July 27, 2015, 10:50:41 PM
Okay I have just checked the files and only Index.template.php would need a hand.
Tomorrow I'll leave the modified file as today didn't have time to properly check it.
Title: Re: Reseller
Post by: upgraders on July 28, 2015, 09:30:40 AM
Thanks I look forward to it!
Title: Re: Reseller
Post by: Diego Andrés on July 29, 2015, 01:08:45 PM
Sorry I forgot about this.

Try this file
Title: Re: Reseller
Post by: upgraders on July 29, 2015, 02:13:59 PM
Thanks.. SO much!  it is a lot better, but it seems to be taking up a little too much room. Ideally the forum expands to the browser size and there will be left and right areas for ads using the SMFhacks Ad seller mod.  can you take a look to see if we can get it a little bit more proportionate?  http://www.vapeshopforum.com/
Title: Re: Reseller
Post by: Diego Andrés on July 29, 2015, 02:34:07 PM
Ok, try this one  8)
Title: Re: Reseller
Post by: upgraders on July 29, 2015, 02:43:02 PM
You are awesome!  I think that fixes that issue!  Can you share what you changed?

Is there any adjustment that can be made to the Avatar on a mobile or smaller browser window.  When you shrink the window, right at the point where the content shifts, the Avatar gets very large and pixilated, until you shrink down more.  IT would be nice to be able to create a "Max-Size" that could be adjusted but keep the responsiveness.
Title: Re: Reseller
Post by: Diego Andrés on July 29, 2015, 11:30:18 PM
Sure
// Begin Ad Seller Pro Location - Left Side of the Forum


if (ShowAdLocation(9,0,true) || ShowAdLocation(10,0,true))
{
echo '<div class="col-md-12">';

global $sourcedir;
include_once $sourcedir . "/adseller2.php";

$adSellerAdData =  ShowAdLocation(9,0,false,5,true);
if ($adSellerAdData != false)
{
echo '<div class="col-md-2">';

echo $adSellerAdData;

echo '</div>';
}



echo '<div class="', (ShowAdLocation(10,0,false,5,true) && ShowAdLocation(9,0,false,5,true) ? 'col-md-8' : (!ShowAdLocation(10,0,false,5,true) || !ShowAdLocation(9,0,false,5,true)) ? 'col-md-10' : 'col-md-12'), '">';
}


// End Ad Seller Pro Location - Left Side of the Forum






}

function template_body_below()
{
global $context, $settings, $options, $scripturl, $txt, $modSettings;



// Begin Ad Seller Pro Location - Right Side of the Forum
if (ShowAdLocation(9,0,true) || ShowAdLocation(10,0,true))
{
echo '</div>';
global $sourcedir;
include_once $sourcedir . "/adseller2.php";

$adSellerAdData =  ShowAdLocation(10,0,false,5,true);
if ($adSellerAdData != false)
{
echo '<div class="col-md-2">';

echo $adSellerAdData;

echo '</div>';
}
echo '</div>';
}
// End Ad Seller Pro Location - Right Side of the Forum


I just used the pre-defined classes of bootstrap. Those allow you to have some kind of distributed space from 1 to 12.
For each side we are givin 2 spaces (<div class="col-md-2">content</div>) And the rest of the content would have 8 spaces but ONLY if both sides are enabled. As you are only using one side of the block (righ) I added a conditioning. So if there's only 1 block being used, the content will have 10 spaces, so it can complete the 12.
I hope that was clear  :P

About the other, I don't know if it's been already answered on the support topic in smf, so check the topic and once you're there, you can search content inside the topic selecting the "this topic" in the search bar input at the top.

And I don't know about the
Title: Re: Reseller
Post by: upgraders on July 30, 2015, 07:42:54 AM
thanks,  I haven't been able to find it, which is why I posted it again here.  It was asked in a long thread but never addressed.
Title: Re: Reseller
Post by: Brianϟ on July 31, 2015, 03:22:57 AM
 8) 8)
Title: Re: Reseller
Post by: Diego Andrés on July 31, 2015, 10:32:53 AM
I found it here http://www.simplemachines.org/community/index.php?topic=525855.msg3745023;topicseen#msg3745023
Only the first one that talks about the avatar being too big
Title: Re: Reseller
Post by: upgraders on July 31, 2015, 03:47:30 PM
Thanks,  I must have missed that!  thanks again for your help!! 
Title: Re: Reseller
Post by: upgraders on August 01, 2015, 02:09:50 PM
I hope not to bother you again, but I am having another problem, actually it looks as though it's been going on for a while since I first installed the Theme.  You addressed it in this post, http://smftricks.com/index.php?topic=712.0   sort of.  I am using SMFhack Menu Pro, although I am not 100% sure this is the reason.  I have no found any commonality, except that a few reference this error with the reseller theme. So I hope to reach out one last time to fix this.

If you read post #83 it also references the problem:
https://translate.google.com/translate?hl=en&sl=ru&u=http://www.simplemachines.ru/index.php%3Ftopic%3D17952.50&prev=search

I have included what I think you might want to look at.  Subs, intext.template and the profile.english.



The errors I get are in the 1000's and they are all similar in some way and almost on every page of the forum:

Apply Filter: Only show the error messages of this URLhttp://www.vapeshopforum.com/index.php?board=10.0;sort=repliesApply Filter: Only show the errors with the same message8: Undefined index: sub_buttonsApply Filter: Only show the errors from this file File: <snip> .COM/www/Themes/default/languages/Profile.english.php (body_above sub template - eval?)
Line: 506

Apply Filter: Only show the error messages of this URLhttp://www.vapeshopforum.com/index.php?action=admin;area=logs;sa=errorlog;descApply Filter: Only show the errors with the same message8: Undefined index: sub_buttonsApply Filter: Only show the errors from this file File: D<snip> VAPESHOPFORUM.COM/www/Themes/default/languages/Profile.english.php (body_above sub template - eval?)


http://www.vapeshopforum.com/index.php?topic=2.0Apply Filter: Only show the errors with the same message8: Undefined index: sub_buttonsApply Filter: Only show the errors from this file File: D:/webspace/VAPESHOPFORUM.COM/www/Themes/default/languages/Profile.english.php (body_above sub template - eval?)
Line: 507


Title: Re: Reseller
Post by: upgraders on August 03, 2015, 10:13:33 AM
I probably should have turned off the Template Eval.  The error occurs in the Index.template.php  specifically in the Template_menu function

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>';
}
}


Thanks again for any help!



Lines #506,507 & 509

<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>' : '' ,'


Title: Re: Reseller
Post by: Diego Andrés on August 03, 2015, 02:13:54 PM
Can you also attach the index.template.php from default theme? That could help here to find out where is the problem.
Title: Re: Reseller
Post by: upgraders on August 03, 2015, 02:27:11 PM
Here you go, thanks.
Title: Re: Reseller
Post by: Diego Andrés on August 04, 2015, 12:03:33 PM
Greatl, I'll take a look at it on a couple of hours as soon as I get home.
Title: Re: Reseller
Post by: SgtEeyore on August 05, 2015, 09:44:43 AM
Hi, this is an awesome theme. Does it support 2.0.10?
Title: Re: Reseller
Post by: Diego Andrés on August 05, 2015, 11:07:29 AM
Yes, 2.0.x series
Title: Re: Reseller
Post by: Diego Andrés on August 05, 2015, 04:27:34 PM
Hi, I'm not 100% sure but try this on Subs.php
// [Articles] button
'articles' => array(
'title' => $txt['smfarticles_menu'],
'href' => $scripturl . '?action=articles',
'show' => $context['allow_view_smfarticles'],
'icon' => '',
),


Replace
// [Articles] button
'articles' => array(
'title' => $txt['smfarticles_menu'],
'href' => $scripturl . '?action=articles',
'show' => $context['allow_view_smfarticles'],
'sub_buttons' => array(),
'icon' => '',
),
Title: Re: Reseller
Post by: upgraders on August 05, 2015, 04:37:26 PM
Thanks again for your help, but no the same errors occur with the change in code.
Title: Re: Reseller
Post by: upgraders on August 11, 2015, 05:25:25 PM
I still have had no luck fixing this error.  Any other ideas or suggestions?
Title: Re: Reseller
Post by: Diego Andrés on August 12, 2015, 09:50:15 AM
Sorry but AFAIK there's no issue with Reseller theme, or I couldn't figure it out. Did you ask in the support board of that mod?
Title: Re: Reseller
Post by: zaith on August 22, 2015, 10:18:15 AM
Queria preguntar como podría poner una imagen en el header del theme reseller y si se podría hacer rotativo el header.
uso smf 2.0.10 y el foro es en localhost
Title: Re: Reseller
Post by: Thijs.w on August 31, 2015, 10:27:47 AM
Hey Daniiel!

I like your thema a lot, and it's a nice theme to edit yourself. So I made a edit.

(https://i.imgur.com/hfrzYjxl.jpg)

Do you have a license for this theme? Can I share it on my site par example, can I edit the footer to 'Reseller by Daniiel and Thijs' etc.?


Regards,
Thijs.
Title: Re: Reseller
Post by: Diego Andrés on September 01, 2015, 06:57:53 AM
Yes, you're allowed to modify the theme as long as you don't remove the copyright or the back link to our site. You can use something like
Reseller by SMF Tricks Modified by Someone.

Also, you can re-distribute it. Only if we give you permission like now, but you can't submit it to the smf theme site.

Regards
Title: Re: Reseller
Post by: Thijs.w on September 01, 2015, 09:20:53 AM
Quote from: Diego Andrés on September 01, 2015, 06:57:53 AM
Yes, you're allowed to modify the theme as long as you don't remove the copyright or the back link to our site. You can use something like
Reseller by SMF Tricks Modified by Someone.

Also, you can re-distribute it. Only if we give you permission like now, but you can't submit it to the smf theme site.

Regards

GameControl by Daniiel and Thijs. Is that OK? The design is changed? :P
By the way, Can I release it here? I'm not going to use it myself I think.  :-[
Title: Re: Reseller
Post by: Diego Andrés on September 01, 2015, 10:09:25 AM
Yes, you can upload it to the users category section and we will review it.

PS: in the downloads page I meant.

Regards
Title: Re: Reseller
Post by: Ciaran on September 09, 2015, 07:53:59 AM
Hi there,

I LOVE your reseller theme! The only tiny issue is that some members are reporting that Avatars are not showing for them in Firefox on Windows/PC. Firefox on Mac works fine.  There are no ad-blockers or other browser plugins installed for the users have issues. I have attached anything I thought would be handy for you to take a look at - I understand if this is not something you can help me with but it would be much appreciated! Unfortunately I have no access to a PC so I can't get a screen shot for you. Just in case there are some CSS modifications that are causing this:

Reseller.css
Spoiler
img
{
max-width: 100%;
height: auto;
}
table, form, fielset
{
max-width: 100%;
}
/* Navbar */
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form
{
border-bottom-width: 0;
border-color: #222427;
}
.navbar-default .navbar-nav > li > a, .navbar-default .navbar-brand
{
color: #FFF;
font-weight: normal;
font-family: ""Open Sans",Helvetica,Arial,sans-serif";
text-shadow: 0 2px #1b1c1e;
}
.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;
}
@media (max-width: 768px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a
{
color: #FFF;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus
{
color: #FFF;
background-color: #2a3038;
box-shadow: 0 -3px #272d35 inset;
}
}
/* Header */
header
{
background: #555555;
box-shadow: 0 -3px #9fc6e0 inset;
padding: 20px 0;
}
@media (max-width: 970px) {
header
{
text-align: center;
}
}
header .btn
{
font-size: 13px;
font-family: ""Open Sans",Helvetica,Arial,sans-serif";
font-weight: bold;
letter-spacing: 1px;
text-transform: uppercase;
padding: 13px 20px 16px;
   -webkit-transition: all .5s;
    transition: all .5s;
}
header .btn-success
{
background-color: #2ecc71;
border-color: transparent;
border-width: 0;
box-shadow: 0 -4px #27ae60 inset;
text-shadow: 0 1px #27ae60;
}
header .btn-primary
{
background-color: #34495e;
border-color: transparent;
border-width: 0;
box-shadow: 0 -4px #2c3e50 inset;
text-shadow: 0 1px #2c3e50;
}
header .btn-success:hover, header .btn-success:focus, header .btn-success:active
{
background-color: #2ecc71;
border-color: transparent;
border-width: 0;
box-shadow: none;
padding-bottom: 13px;
}
header .btn-primary:hover, header .btn-primary:focus, header .btn-primary:active
{
background-color: #34495e;
border-color: transparent;
border-width: 0;
box-shadow: none;
padding-bottom: 13px;
}
header .modal-content
{
-webkit-box-shadow: none;
box-shadow: none;
border: none;
}
header .modal-header
{
border-bottom: 1px solid #34495e;
background-color: #34495e;
border-radius: 4px 4px 0 0;
}
header .modal-header h4
{
color: #FFF;
}
header .modal-header .close
{
text-shadow: none;
}
header .checkbox, header .form-control
{
font-size: 13px;
}
header .avatar
{
float: right;
margin-left: 15px;
width: 84px;
height: 84px;
}
header ul.reset
{
text-align: right;
}
header ul.reset li, header ul.reset li a
{
color: #FFF;
font-family: ""Open Sans",Helvetica,Arial,sans-serif";
font-size: 12px;
}
header ul.reset li a:hover
{
color: #0e3e5e;
text-decoration: none;
}
header ul.reset li.user
{
font-size: 16px;
font-weight: bold;
}
@media (max-width: 970px) {
header ul.reset
{
text-align: center;
}
header .avatar
{
float: none;
}
}
.breadcrumb
{
margin-bottom: 0;
background-color: #FFF;
border-radius: 3px;
}
.breadcrumb > li > a
{
color: #828282;
}
footer
{
margin-top: 20px;
background: #FFFFFF;
padding: 20px 0;
text-align: center;
box-shadow: 0 -7px #2c3e50;
font-family: ""Open Sans",Helvetica,Arial,sans-serif";
}
footer, footer a
{
color: #17191c;
}
.btn-group
{
margin: 5px 0;
}
.display-info
{
text-align: center;
overflow: hidden;
}
.display-info h1
{
font-size: 36px;
}
.display-info ul.info li
{
float: left;
font-size: 1.5em;
margin-left: 5px;
}
.display-info ul.info li.replies
{
color: #5bc0de;
}
.display-info ul.info li.replies img, .display-info ul.info li.views img
{
width: 64px;
}
.display-info ul.info li.views
{
color: #f0ad4e;
}
.social_icons
{
margin-bottom: 10px;
}
.social_icons a
{
margin: 0 5px;
opacity: 0.5;
transition: opacity .25s ease-in;
-moz-transition: opacity .25s ease-in;
-webkit-transition: opacity .25s ease-in;
}
.social_icons a:hover
{
opacity: 1;
}
[close]


Index.css:
Spoiler
[code]/* Styles for the general looks for the Curve theme.
------------------------------------------------------- */

/* Normal, standard links. */
a:link, a:visited
{
   color: #17191c;
   text-decoration: none;
}
a:hover
{
   text-decoration: underline;
   cursor: pointer;
}

/* Links that open in a new window. */
a.new_win:link, a.new_win:visited
{
   color: #17191c;
   text-decoration: none;
}
a.new_win:hover
{
   text-decoration: underline;
}

/* Tables should show empty cells. */
table
{
   empty-cells: show;
}

/* Set a fontsize that will look the same in all browsers. */
body
{
   background: #CECECE;
   margin: 0 auto;
   padding: 0;
   font-size: 16px;
}

/* Help popups require a different styling of the body element. */
body#help_popup
{
   padding: 1em;
}

/* use dark grey for the text, leaving #000 for headers etc */
body, td, th, tr
{
   color: #444;
}

/* This division wraps the entire forum when a forum width is set. */
div#wrapper
{
   margin: 0 auto;
   min-width: 764px;
   max-width: 2300px;
}

/* lets give all forms zero padding/margins */
form
{
   padding: 0;
   margin: 0;
}

/* We can style the different types of input buttons to be uniform throughout different browsers and their color themes.
   .button_submit - covers input[type=submit], input[type=button], button[type=submit] and button[type=button] in all browsers
   .button_reset  - covers input[type=reset] and button[type=reset] throughout all browsers
   .input_check   - covers input[type=checkbox] throughout all browsers
   .input_radio   - covers input[type=radio] throughout all browsers
   .input_text    - covers input[type=text] throughout all browsers
   .input_file    - covers input[type=file] throughout all browsers
*/

input, button, select, textarea
{
   font: 95%/115% verdana, Helvetica, sans-serif;
   color: #000;
   background: #fff;
   padding: 2px;
}

/* Select elements look horrible with the extra padding, so leave them unpadded. */
select
{
   padding: 0;
}

/* Add some padding to the options instead. */
select option
{
   padding: 1px;
}

/* The font size of textareas should be just a little bit larger. */
textarea
{
   font: 100%/130% verdana, Helvetica, sans-serif;
}

/* Buttons should be styled a bit differently, in order to make them look more button'ish. */
.button_submit, .button_reset
{
   background: #cde7ff url(../images/theme/submit_bg.png) no-repeat;
   border: 1px solid #aaa;
   cursor: pointer;
   font-weight: normal;
}
input:hover, textarea:hover, button:hover, select:hover
{
   border: 1px solid #454545;
}
.button_submit:hover, .button_reset:hover
{
   border: 1px solid #aaa;
   background: url(../images/theme/submit_bg.png) no-repeat 0 -140px #cde7ff;
}
input:focus, textarea:focus, button:focus, select:focus
{
   border: 1px solid #454545;
}

/* All input elements that are checkboxes or radio buttons shouldn't have a border around them. */
input.input_check, input.input_radio
{
   border: none;
   background: none;
}
h3.catbg input.input_check
{
   margin: 9px 7px 0 7px;
}

/* Give disabled text input elements a different background color. */
input[disabled].input_text
{
   background-color: #eee;
}

/* Standard horizontal rule.. (
, etc.) */
hr, .hrcolor
{
   height: 1px;
   border: 0;
   color: #ccc;
   background-color: #ccc;
}

/* By default set the color on these tags as #000. */
h1, h2, h3, h4, h5, h6
{
   color: #000;
   font-size: 1em;
   margin: 0;
   padding: 0;
}

/* Fieldsets are used to group elements. */
fieldset
{
   border: 1px solid #c4c4c4;
   padding: 1em;
   margin: 0 0 0.5em 0;
}
fieldset legend
{
   font-weight: bold;
   color: #444;
}
/* No image should have a border when linked. */
a img
{
   border: 0;
}

/* Define strong as bold, and em as italics */
strong
{
   font-weight: bold;
}

em
{
   font-style: italic;
}
/* Alternative for u tag */
.underline
{
   text-decoration: underline;
}

/* Common classes to easy styling.
------------------------------------------------------- */

.floatright
{
   float: right;
}
.floatleft
{
   float: left;
}

.flow_auto
{
   overflow: auto;
}
.flow_hidden
{
   overflow: hidden;
}
.flow_hidden .windowbg, .flow_hidden .windowbg2
{
   margin-top: 2px;
}
.clear
{
   clear: both;
}
.clear_left
{
   clear: left;
}
.clear_right
{
   clear: right;
}

/* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
.smalltext, tr.smalltext th
{
   font-size: 0.85em;
   font-family: verdana, sans-serif;
}
.middletext
{
   font-size: 0.9em;
   line-height: 1em;
   font-family: verdana, sans-serif;
}
.normaltext
{
   font-size: 1em;
   line-height: 1.2em;
}
.largetext
{
   font-size: 1.4em;
}
.centertext
{
   margin: 0 auto;
   text-align: center;
}
.righttext
{
   margin-left: auto;
   margin-right: 0;
   text-align: right;
}
.lefttext
{
   margin-left: 0;
   margin-right: auto;
   text-align: left;
}
.double_height
{
   line-height: 2em;
}
/* some common padding styles */
.padding
{
   padding: 0.7em;
}
.main_section, .lower_padding
{
   padding-bottom: 0.5em;
}
/* a quick reset list class. */
ul.reset, ul.reset li
{
   padding: 0;
   margin: 0;
   list-style: none;
}

/* Some BBC related styles.
------------------------------------------------------- */

/* A quote, perhaps from another post. */
blockquote.bbc_standard_quote, blockquote.bbc_alternate_quote
{
   font-size: 16px;
   color: #000;
   line-height: 1.4em;
   background: url(../images/theme/quote.png) 0.1em 0.1em no-repeat;
   border-left: 5px solid #99A;
   padding: 1.1em 1.4em;
   margin: 0.1em 0 0.3em 0;
   overflow: auto;
}

/* Alterate blockquote stylings */
blockquote.bbc_standard_quote
{
   background-color: #d7daec;
}
blockquote.bbc_alternate_quote
{
   background-color: #e7eafc;
}

/* A code block - maybe PHP ;). */
code.bbc_code
{
   display: block;
   font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
   font-size: x-small;
   background: #eef;
   border-left: 5px solid #999;
   line-height: 1.5em;
   padding: 3px 1em;
   overflow: auto;
   white-space: nowrap;
   border-radius: 0;
   /* Show a scrollbar after about 24 lines. */
   max-height: 24em;
}

/* The "Quote:" and "Code:" header parts... */
.codeheader, .quoteheader
{
   color: #666;
   font-size: x-small;
   font-weight: bold;
   padding: 0 0.3em;
}

/* For links to change the code stuff... */
.codeoperation
{
   font-weight: normal;
}

/* Styling for BBC tags */
.bbc_link:link, .bbc_link:visited
{
   border-bottom: 1px solid #A8B6CF;
}
.bbc_link:hover
{
   text-decoration: none;
   border-bottom: 1px solid #346;
}
.bbc_size
{
   line-height: 1.4em;
}
.bbc_color a
{
   color: inherit;
}
.bbc_img
{
   border: 0;
}
.bbc_table
{
   font: inherit;
   color: inherit;
}
.bbc_table td
{
   font: inherit;
   color: inherit;
   vertical-align: top;
}
.bbc_u
{
   text-decoration: underline;
}
.bbc_list
{
   text-align: left;
}
.bbc_tt
{
   font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
}

/* Generally, those [?] icons.  This makes your cursor a help icon. */
.help
{
   cursor: help;
}

/* /me uses this a lot. (emote, try typing /me in a post.) */
.meaction
{
   color: red;
}

/* Highlighted text - such as search results. */
.highlight
{
   font-weight: bold;
   color: #ff7200 !important;
   font-size: 1.1em;
}

/* A more discreet highlight color, for selected membergroups etc. */
.highlight2
{
   background-color: #D1E1EF;
   color: #000 !important;
}

/* Generic, mostly color-related, classes.
------------------------------------------------------- */

.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;
}

/* adjust the table versions of headers */
tr.titlebg th, tr.titlebg2 th, td.titlebg, td.titlebg2, tr.catbg th, tr.catbg2 th, td.catbg, td.catbg2
{
   padding: 0 6px;
}
tr.titlebg th a:link, tr.titlebg th a:visited, tr.titlebg2 td a:link, tr.titlebg2 td a:visited
{
   color: #fff;
}
tr.catbg th a:link, tr.catbg th a:visited, tr.catbg2 td a:link, tr.catbg2 td a:visited
{
   color: #fff;
}
.catbg select
{
   height: 1.5em;
   font-size: 0.85em;
}

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg, #preview_body, .windowbg2, .windowbg3
{
   color: #000;
   background-color: #fff;
   border-radius: 4px;
   margin: 0.2em 0;
}
.windowbg4
{
   color: #000;
   background-color: #f5f5f5;
}


/* the page navigation area */
.pagesection
{
   font-size: 0.9em;
   padding: 0.2em;
   margin: 10px 0;
}
div.pagesection div.floatright input
{
   margin-top: 3px;
}

.pagelinks
{
   padding: 0.6em 0 0.4em 0;
}

/* Colors for background of posts requiring approval */
.approvebg
{
   color: #000;
   background-color: #ffeaea;
}
.approvebg2
{
   color: #000;
   background-color: #fff2f2;
}

/* Color for background of *topics* requiring approval */
.approvetbg
{
   color: #000;
   background-color: #e4a17c;
}
.approvetbg2
{
   color: #000;
   background-color: #f3bd9f;
}

/* Sticky topics get a different background */
.stickybg
{
   background: #fcf8e3 !important;
}
.stickybg2
{
   background: #fcf8e3 !important;
}

/* Locked posts get a different shade, too! */
.lockedbg
{
   background: #f2dede !important;
   font-style: italic;
}
.lockedbg2
{
   background: #f2dede !important;
   font-style: italic;
}

/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
   overflow: auto;
   line-height: 1.4em;
   padding: 0.1em 0;
}

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature, .attachments
{
   width: 100%;
   overflow: auto;
   clear: right;
   padding: 1em 0 3px 0;
   border-top: 1px solid #aaa;
   line-height: 1.4em;
   font-size: 0.85em;
}
.custom_fields_above_signature
{
   width: 98%;
   clear: right;
   padding: 1em 0 3px 0;
   border-top: 1px solid #aaa;
   line-height: 1.4em;
   font-size: 0.85em;
}

/* Sometimes there will be an error when you post */
.error
{
   color: red;
}

/* Messages that somehow need to attract the attention. */

/* Calendar colors for birthdays, events and holidays */
.birthday
{
   color: #920ac4;
}

.event
{
   color: #078907;
}

.holiday
{
   color: #000080;
}

/* Colors for warnings */
.warn_mute
{
   color: red;
}

.warn_moderate
{
   color: #ffa500;
}

.warn_watch, .success
{
   color: green;
}

a.moderation_link, a.moderation_link:visited
{
   color: red;
   font-weight: bold;
}

.openid_login
{
   background: white url(../images/openid.gif) no-repeat;
   padding-left: 18px;
}

/* a descriptive style */
.description, .description_board, .plainbox
{
   padding: 0.5em 1em;
   font-size: 0.9em;
   line-height: 1.4em;
   background: #fff;
   border-radius: 3px;
   margin: 0.2em 1px 1em 1px;
}
.description_board
{
   margin: 1em 1px 0 1px;
}

/* an informative style */
.information
{
   padding: 0.5em 1em;
   font-size: 0.9em;
   line-height: 1.3em;
   border: 1px solid #bbb;
   background: #f0f6f0;
   margin: 0.2em 1px 1em 1px;
}
.information p
{
   padding: 1em;
   margin: 0;
}
p.para2
{
   padding: 1em 0 3.5em 0;
   margin: 0;
}
/* AJAX notification bar
------------------------------------------------------- */
#ajax_in_progress
{
   background: url(../images/theme/loadingbar.png) repeat-x;
   color: #f96f00;
   text-align: center;
   font-size: 16pt;
   padding: 8px;
   width: 100%;
   height: 66px;
   line-height: 25px;
   position: fixed;
   top: 0;
   left: 0;
}

#ajax_in_progress a
{
   color: orange;
   text-decoration: underline;
   font-size: smaller;
   float: right;
   margin-right: 20px;
}

/* Lists with settings use these a lot.
------------------------------------------------------- */
dl.settings
{
   clear: right;
   overflow: auto;
   margin: 0 0 10px 0;
   padding: 0;
}
dl.settings dt
{
   width: 40%;
   float: left;
   margin: 0 0 10px 0;
   padding: 0;
   clear: both;
}
dl.settings dt.settings_title
{
   width: 100%;
   float: none;
   margin: 0 0 10px 0;
   padding: 5px 0 0 0;
   font-weight: bold;
   clear: both;
}
dl.settings dt.windowbg
{
   width: 98%;
   float: left;
   margin: 0 0 3px 0;
   padding: 0 0 5px 0;
   clear: both;
}
dl.settings dd
{
   width: 56%;
   float: right;
   overflow: auto;
   margin: 0 0 3px 0;
   padding: 0;
}
dl.settings img
{
   margin: 0 10px 0 0;
}
/* help icons */
dl.settings dt a img
{
   position: relative;
   top: 2px;
}

/* Styles for rounded headers.
------------------------------------------------------- */
h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg
{
   overflow: hidden;
   height: 35px;
   line-height: 35px;
   font-size: 1em;
}
h3.catbg a:link, h3.catbg a:visited, h4.catbg a:link, h4.catbg a:visited, h3.catbg, .table_list tbody.header td, .table_list tbody.header td a
{
   color: #fff;
}
h3.catbg2 a, h3.catbg2
{
   color: #feb;
}
h3.catbg a:hover, h4.catbg a:hover, .table_list tbody.header td a:hover
{
   color: #fd9;
   text-decoration: none;
}
h3.catbg2 a:hover
{
   color: #fff;
   text-decoration: none;
}
h3.titlebg a, h3.titlebg, h4.titlebg, h4.titlebg a
{
   color: #fff;
}
h3.titlebg a:hover, h4.titlebg a:hover
{
   color: #53616f;
   text-decoration: none;
}
h3.catbg img.icon, h4.titlebg img.icon
{
   vertical-align: middle;
   margin: -2px 5px 0 0;
}
h4.catbg a.toggle img
{
   vertical-align: middle;
   margin: -2px 5px 0 5px;
}
h4.catbg, h4.catbg2 , h3.catbg , h3.catbg2 , .table_list tbody.header td.catbg
{
   background: #34495e;
   padding-right: 9px;
}
h4.titlebg, h3.titlebg
{
   background: #27ae60;
   padding-right: 9px;
}
h4.titlebg img.icon
{
   float: left;
   margin: 7px 8px 0 0;
}
div.cat_bar
{
   background: #34495e;
   padding-left: 9px;
   height: 35px;
   overflow: hidden;
   margin-bottom: 1px;
}
div.title_bar
{
   background: #27ae60;
   padding-left: 9px;
   height: 35px;
   overflow: hidden;
   margin-bottom: 1px;
}
/* rounded bars needs a different background here */
div.roundframe div.cat_bar
{
   background: #27ae60;
   margin-bottom: 0;
}
div.roundframe div.cat_bar h3.catbg
{
   background: #27ae60;
}
div.title_barIC
{
   background: #2ecc71;
   padding-left: 9px;
   height: 35px;
   overflow: hidden;
   margin-bottom: 1px;
}
div.title_barIC h4.titlebg
{
   background: #2ecc71;
}
#upshrinkHeaderIC p.pminfo
{
   margin: 0;
   padding: 0.5em;
}
img#upshrink_ic, img#newsupshrink
{
   float: right;
   margin: 10px 5px 0 0;
}
table.table_list a.unreadlink, table.table_list a.collapse
{
   float: right;
}
table.table_list a.collapse
{
   margin: 0 5px 0 1em;
   height: 31px;
   line-height: 31px;
   display: block;
}

/* The half-round header bars for some tables. */
.table_grid tr.catbg, .table_grid tr.titlebg
{
   font-size: 0.95em;
   border-bottom: 1px solid #fff;
}
.table_grid tr.catbg th, .table_grid tr.titlebg th
{
   height: 31px;
   line-height: 31x;
}
tr.catbg th.first_th
{
   background: #27ae60;
}
tr.catbg th.last_th
{
   background: #27ae60;
}
tr.titlebg th.first_th
{
   background: #27ae60;
}
tr.titlebg th.last_th
{
   background: #27ae60;
}
.table_grid th.last_th input
{
   margin: 0 2px;
}
.table_grid th.lefttext
{
   padding: 0 0.7em;
}

/* a general table class */
table.table_grid
{
   border-collapse: collapse;
   margin-top: 0.1em;
}
table.table_grid td
{
   padding: 3px;
   border-bottom: 1px solid #e4e4e4;
}
table.table_grid td.icon1
{
   border-left: 1px solid #e4e4e4;
}
table.table_grid td.lastpost, table.table_grid td.moderation
{
   border-right: 1px solid #e4e4e4;
}
/* GenericList */
.additional_row
{
   padding: 0.5em 0 0.5em 0;
}
table.table_grid thead tr.catbg th
{
   white-space: nowrap;
}

/* table_grid styles for Profile > Show Permissions. */
#permissions table.table_grid  td
{
   padding: 0.4em 0.8em;
   cursor: default;
}

/* Common styles used to add corners to divisions.
------------------------------------------------------- */
.windowbg span.topslice
{
   display: block;
   padding-left: 20px;
   background: #FFF;
   border-radius: 4px 4px 0 0;
}
.windowbg span.topslice span
{
   display: block;
   background: #FFF;
   height: 11px;
   border-radius: 4px 4px 0 0;
}
.windowbg span.botslice
{
   display: block;
   padding-left: 20px;
   background: #FFF;
   font-size: 5px;
   line-height: 5px;
   margin-bottom: 0.2em;
   border-radius: 0 0 4px 4px;
}
.windowbg span.botslice span
{
   display: block;
   background: #FFF;
   height: 11px;
   border-radius: 0 0 4px 4px;
}
.windowbg2 span.topslice
{
   display: block;
   padding-left: 20px;
   background: #FFF;
   border-radius: 4px 4px 0 0;
}
.windowbg2 span.topslice span
{
   display: block;
   background: #FFF;
   height: 11px;
   border-radius: 4px 4px 0 0;
}
.windowbg2 span.botslice
{
   display: block;
   padding-left: 20px;
   background: #FFF;
   font-size: 5px;
   line-height: 5px;
   margin-bottom: 0.2em;
   border-radius: 0 0 4px 4px;
}
.windowbg2 span.botslice span
{
   display: block;
   background: #FFF;
   height: 11px;
   border-radius: 0 0 4px 4px;
}
.approvebg span.topslice
{
   display: block;
   padding-left: 20px;
   background: url(../images/theme/main_block.png) 0 0 no-repeat;
}
.approvebg span.topslice span
{
   display: block;
   background: url(../images/theme/main_block.png) 100% 0 no-repeat;
   height: 11px;
}
.approvebg span.botslice
{
   display: block;
   padding-left: 20px;
   background: url(../images/theme/main_block.png) 0 -11px no-repeat;
   margin-bottom: 0.2em;
}
.approvebg span.botslice span
{
   display: block;
   background: url(../images/theme/main_block.png) 100% -11px no-repeat;
   height: 11px;
}
.postbg
{
   border-left: 1px solid #7f7f7f;
   border-right: 1px solid #7f7f7f;
}

/* Used for sections that need somewhat larger corners.
----------------------------------------------------------- */
.contentboard
{
   background: #fff;
   padding: 10px;
   border-radius: 3px;
}
.roundframe
{
   padding: 0 10px;
   background: #fff;
}
.roundframe dl, .roundframe dt, .roundframe p
{
   margin: 0;
}
.roundframe p
{
   padding: 0.5em;
}
span.upperframe
{
   padding: 0;
   display: block;
   background: #fff;
   padding-left: 20px;
   border-radius: 3px 3px 0 0;
}
span.upperframe span
{
   padding: 0;
   height: 12px;
   display: block;
   background: #fff;
   border-radius: 3px 3px 0 0;
}
span.lowerframe
{
   padding: 0;
   display: block;
   background: #fff;   
   padding-left: 20px;
   border-radius: 0 0 3px 3px;
}
span.lowerframe span
{
   padding: 0;
   height: 12px;
   display: block;
   background: #fff;
   border-radius: 0 0 3px 3px;
}

/* The main content area.
------------------------------------------------------- */
.content
{
   padding: 0.5em 1.2em;
   margin: 0;
   border: none;
}
.content p
{
   margin: 0 0 0.5em 0;
}

/* Styles used by the auto suggest control.
------------------------------------------------------- */
.auto_suggest_div
{
   border: 1px solid #000;
   position: absolute;
   visibility: hidden;
}
.auto_suggest_item
{
   background-color: #ddd;
}
.auto_suggest_item_hover
{
   background-color: #888;
   cursor: pointer;
   color: #eee;
}

/* Styles for the standard dropdown menus.
------------------------------------------------------- */
#main_menu
{
   padding: 0 0.5em;
   float: left;
   margin: 0;
   width: auto;
}

.dropmenu, .dropmenu ul
{
   list-style: none;
   line-height: 1em;
   padding: 0;
   margin: 0;
}
.dropmenu
{
   padding: 0;
}
.dropmenu a
{
   display: block;
    color: #252525;
    padding: 4px;
   text-decoration: none;
}
.dropmenu a span
{
   display: block;
   padding: 0;
   font-size: 9pt;
    font-weight: 600;
   font-family: "Segoe UI";
   transition: color .35s ease-in-out;
   -moz-transition: color .35s ease-in-out;
   -webkit-transition: color .35s ease-in-out;
}
/* the background's first level only */
.dropmenu li a.firstlevel
{
   margin-right: 8px;
}
.dropmenu li a.firstlevel span.firstlevel
{
   display: block;
   position: relative;
   height: 22px;
   line-height: 19px;
   white-space: pre;
}
.dropmenu li
{
   float: left;
   padding: 0;
   margin: 0;
   position: relative;
}
.dropmenu li ul
{
   z-index: 90;
   display: none;
   position: absolute;
   width: 19.2em;
   font-weight: normal;
   padding: 5px 0;
    -webkit-transition: display .25s ease .1s;
    -moz-transition: display .25s ease .1s;
    transition: display .25s ease .1s;
}
.dropmenu li li
{
   width: 19em;
   padding: 3px;
   margin: 0;
    background: #171717;
}
.dropmenu li li:first-child:last-child
{
   border-radius: 5px;
}
.dropmenu li li:first-child
{
   border-radius: 5px 5px 0 0;
}
.dropmenu li li:last-child
{
   border-radius: 0 0 5px 5px;
}
.dropmenu li li a
{
   color: #FFF;
    padding: 4px 2px;
   border-radius: 3px;
}
.dropmenu li li a span
{
   display: block;
   padding: 3px;
   font-weight: 400;
   transition: none;
   -moz-transition: none;
   -webkit-transition: none;
}
.dropmenu li ul ul
{
   margin: -1.8em 0 0 13em;
}
.dropmenu li li a span img
{
   margin-bottom: -2px;
}

/* the active button */
.dropmenu li a.active
{
    color: #FFF;
   background: #2ecc71;
   border-radius: 3px;
}
.dropmenu li a.active:hover, .dropmenu li:hover a.active
{
    color: #FFF !important;
}
/* the hover effects */
.dropmenu li a.firstlevel:hover, .dropmenu li:hover a.firstlevel
{
    color: #2ecc71;
   cursor: pointer;
   text-decoration: none;
}
/* the hover effects on level2 and 3 */
.dropmenu li li a:hover, .dropmenu li li:hover>a
{
   background: #2ecc71;
   text-decoration: none;
}
.dropmenu li:hover ul ul, .dropmenu li:hover ul ul ul
{
   top: -999em;
}
.dropmenu li li:hover ul
{
   top: auto;
}
.dropmenu li:hover ul
{
   display: block;
}
/* The dropdown menu toggle image */
#menu_toggle
{
   float: right;
   margin-right: 10px;
   padding-top: 3px;
}
#menu_toggle span
{
   position: relative;
   right: 5000px;
}
/* Styles for the standard button lists.
------------------------------------------------------- */

.buttonlist ul
{
   z-index: 100;
   padding: 5px;
   margin: 0 0.2em 5px 0;
}
.buttonlist ul li
{
   margin: 0;
   padding: 0;
   list-style: none;
   float: left;
}
.buttonlist ul li a
{
   display: block;
   font-size: 0.8em;
   color: #000;
   background: #e8e8e8 url(../images/theme/menu_gfx.png) no-repeat 0 -60px;
   padding: 0 0 0 8px;
   margin-left: 12px;
   text-transform: uppercase;
   cursor: pointer;
}
.buttonlist ul li a:hover
{
   background: url(../images/theme/menu_gfx.png) no-repeat 0 0;
   color: #fff;
   text-decoration: none;
}
.buttonlist ul li a span
{
   background: url(../images/theme/menu_gfx.png) no-repeat 100% -60px;
   display: block;
   height: 19px;
   line-height: 19px;
   padding: 0 8px 0 0;
}
.buttonlist ul li a:hover span
{
   background: #fff url(../images/theme/menu_gfx.png) no-repeat 100% 0;
}
/* the active one */
.buttonlist ul li a.active
{
   background: #5a6c85 url(../images/theme/menu_gfx.png) no-repeat 0 -90px;
   color: #fff;
   font-weight: bold;
}
.buttonlist ul li a.active span
{
   background: url(../images/theme/menu_gfx.png) no-repeat 100% -90px;
}
.buttonlist ul li a.active
{
   font-weight: bold;
}
.buttonlist ul li a.active:hover
{
   color: #ddf;
}
.align_top ul li a, .align_bottom ul li a
{
   margin: 0 12px 0 0;
}

/* the navigation list */
ul#navigation
{
   margin: 0;
   font-size: 0.9em;
   padding: 1em 0.4em;
}
ul#navigation li
{
   float: none;
   font-size: 0.95em;
   display: inline;
}

#adm_submenus
{
   padding-left: 2em;
   overflow: hidden;
}

/* Styles for the general looks for the Curve theme.
------------------------------------------------------- */

/* the framing graphics */
#header
{
   background: url(../images/theme/main_block.png) #fefefe no-repeat 0 -480px;
   padding-left: 20px;
}
#header div.frame
{
   background: url(../images/theme/main_block.png) no-repeat 100% -480px;
   display: block;
   padding: 5px 20px 1em 0;
}
/* the content section */
#main_content_section
{
   width: 100%;
   min-height: 200px;
}

/* the main title, always stay at 45 pixels in height! */
h1.forumtitle
{
   line-height: 45px;
   font-size: 1.8em;
   font-family: Geneva, verdana, sans-serif;
   margin: 0;
   padding: 0;
   float: left;
}
/* float these items to the right */
#siteslogan, img#smflogo
{
   margin: 0;
   padding: 0;
   float: right;
   line-height: 3em;
}
h3, h4
{
   padding-bottom: 3px;
}
/* the upshrink image needs some tweaking */
img#upshrink
{
   float: right;
   margin: 1em;
}
/* ..so does the SMF logo */
img#smflogo
{
   margin-left: 1em;
}
/* the upper_section, float the two each way */
#upper_section
{
   padding: 5px;
   margin-bottom: 1.5em;
}
#upper_section ul li.greeting
{
   font-size: 1.3em;
   font-weight: bold;
   line-height: 1.5em;
}
#upper_section div.news
{
   width: 50%;
   float: right;
   text-align: right;
}
#guest_form
{
   overflow: hidden;
}
#guest_form .info
{
   padding: 4px 0 ;
   line-height: 1.3em;
}
div#upper_section div.user
{
   width: 50%;
   float: left;
   overflow: auto;
}
div#upper_section div.user p
{
   float: left;
   margin: 0 1em 1em 0;
   padding: 0;
}
div#upper_section div.user ul
{
   margin: 0;
   padding-left: 10px;
}
div#upper_section div.user ul li
{
   margin-bottom: 2px;
}
div#upper_section div.news p
{
   display: inline;
}
div#upper_section div.news form
{
   padding-bottom: 10px;
}
/* clearing the floats */
#top_section
{
   min-height: 65px;
   overflow: hidden;
   margin-bottom: 3px;
}
#upper_section
{
   overflow: hidden;
}

/* The navigation list (i.e. linktree) */
.navigate_section
{
   padding: 0;
   margin: 0 0 20px;
   background: #FFF;
}
/* The footer wih copyright links etc. */
#footer_section
{
   text-align: center;
   background: url(../images/theme/main_block.png) no-repeat 0 -820px;
   padding-left: 20px;
}
#footer_section span.smalltext
{
   font-size: 100%;
}
#footer_section div.frame
{
   background: url(../images/theme/main_block.png) no-repeat 100% -820px;
   display: block;
   padding: 60px 0 0 0;
}
#footer_section ul li, #footer_section p
{
   font-size: 0.8em;
}
#footer_section ul li
{
   display: inline;
   padding-right: 5px;
}
#footer_section ul li.copyright
{
   display: block;
}
select.qaction, input.qaction
{
   font-size: 0.85em;
   padding: 0;
}
#mlist table tbody td.windowbg2
{
   text-align: center;
}

/* Styles for a typical table.
------------------------------------------------------- */
table.table_list
{
   width: 100%;
}
table.table_list p
{
   padding: 0;
   margin: 0;
}
table.table_list td, table.table_list th
{
   padding: 5px;
}
table.table_list tbody.header td
{
   padding: 0;
}
table.table_list tbody.content td.stats
{
   font-size: 80%;
   width: 15%;
   text-align: center;
}
table.table_list tbody.content td.lastpost
{
   line-height: 1.3em;
   font-size: 75%;
   width: 24%;
}
table.table_list tbody.content td.icon
{
   text-align: center;
   width: 6%;
}

/* Styles for the board index.
------------------------------------------------- */

/* the board title! */
.table_list tbody.content td.info a.subject
{
   font-size: 100%;
   color: #34495e;
}
.table_list tbody.content td.children
{
   color: #555;
   font-size: 75%;
}
p.moderators
{
   font-size: 0.8em;
   font-family: verdana, sans-serif;
}
/* hide the table header/footer parts - but its here for those needing to style it */
#boardindex_table .table_list thead, #boardindex_table .table_list tfoot
{
   display: none;
}

/* the posting icons */
#posting_icons
{
   padding: 0 1em 0.5em 1em;
   margin: 0 0 1em 0;
   line-height: 1em;
}
#posting_icons ul
{
   font-size: 0.8em;
}
#posting_icons img
{
   vertical-align: middle;
   margin: 0 0 0 4ex;
}
#postbuttons_upper ul li a span
{
   line-height: 19px;
   padding: 0 0 0 6px;
}
.nextlinks
{
   text-align: right;
   margin-top: -1px;
}
.nextlinks_bottom
{
   clear: right;
   text-align: right;
}
.mark_read
{
   padding: 0;
}

/* the newsfader */
#newsfader
{
   margin: 0 2px;
}
#smfFadeScroller
{
   text-align: center;
   padding: 0 2em;
   overflow: auto;
   margin: 1em 0;
   color: #575757; /* shouldn't be shorthand style due to a JS bug in IE! */
}

/* Styles for the info center on the board index.
---------------------------------------------------- */

#upshrinkHeaderIC
{
   margin-top: 4px;
}
dl#ic_recentposts
{
   margin: 0 0 0.5em 0;
   padding: 0.5em;
   line-height: 1.3em;
}
dl#ic_recentposts dt
{
   float: left;
}
dl#ic_recentposts dd
{
   text-align: right;
}
#upshrinkHeaderIC p
{
   margin: 0 0 0.5em 0;
   padding: 0.5em;
}
#upshrinkHeaderIC p.last
{
   margin: 0;
   padding: 0.5em;
   border-top: 2px dotted #bbb;
}
#upshrinkHeaderIC p.inline
{
   border: none;
   margin: 0;
   padding: 0.2em 0.5em 0.2em 0.5em;
}
#upshrinkHeaderIC p.stats
{
   font-size: 1.1em;
   padding-top: 8px;
}
form#ic_login
{
   padding: 0.5em;
   height: 2em;
}
form#ic_login ul li
{
   margin: 0;
   padding: 0;
   float: left;
   width: 20%;
   text-align: center;
}
form#ic_login ul li label
{
   display: block;
}

/* the small stats */
#index_common_stats
{
   display: block;
   margin: 0 0 0.5em 0;
   text-align: right;
   font-size: 0.9em;
   position: relative;
   top: -20px;
   line-height: 1px;
}

img.new_posts
{
   padding: 0 0.1em;
}
/* Styles for the message (topic) index.
---------------------------------------------------- */
div.table_frame .table_list
{
   border-collapse: collapse;
   margin: 2px 0;
}
#messageindex
{
   clear: both;
}
/* the page navigation area */
.childboards
{
   margin-bottom: 0.2em;
}
#childboards h3
{
   padding-bottom: 0;
}
#childboards .table_list thead
{
   display: none;
}
#childboards .table_list
{
   margin-bottom: 1em;
}
.lastpost img
{
   float: right;
   padding: 4px;
}

/* Styles for the display template (topic view).
---------------------------------------------------- */

#postbuttons div.buttons
{
   padding: 0.5em;
   width: 40%;
   float: right;
}
#postbuttons div.middletext
{
   width: 60%;
}
#postbuttons span
{
   display: block;
   text-align: right;
}
#postbuttons span.lower
{
   clear: right;
}
#postbuttons .buttonlist
{
   float: right;
}
#postbuttons #pagelinks
{
   padding-top: 1em;
}
/* Events */
.linked_events
{
   padding: 1em 0;
}
.edit_event
{
   margin: 0 1em;
   vertical-align: middle;
}
/* Poll question */
#poll
{
   overflow: hidden;
}
#poll .content
{
   padding: 0 1em;
}
h4#pollquestion
{
   padding: 0 0 0.5em 2em;
}

/* Poll vote options */
#poll_options ul.options
{
   border-top: 1px solid #9999aa;
   padding: 1em 2.5em 0 2em;
   margin: 0 0 1em 0;
}
#poll_options div.submitbutton
{
   border-bottom: 1px solid #9999aa;
   clear: both;
   padding: 0 0 1em 2em;
   margin: 0 0 1em 0;
}

/* Poll results */
#poll_options dl.options
{
   border: solid #9999aa;
   border-width: 1px 0;
   padding: 1em 2.5em 1em 2em;
   margin: 0 1em 1em 0;
   line-height: 1.1em !important;
}

#poll_options dl.options dt
{
   padding: 0.3em 0;
   width: 30%;
   float: left;
   margin: 0;
   clear: left;
}

#poll_options dl.options .voted
{
   font-weight: bold;
}

#poll_options dl.options dd
{
   margin: 0 0 0 2em;
   padding: 0.1em 0 0 0;
   width: 60%;
   max-width: 450px;
   float: left;
}

#poll_options dl.options .percentage
{
   display: block;
   float: right;
   padding: 0.2em 0 0.3em 0;
}

/* Poll notices */
#poll_options p
{
   margin: 0 1.5em 0.2em 1.5em;
   padding: 0 0.5em 0.5em 0.5em;
}

div#pollmoderation
{
   margin: 0;
   padding: 0;
   overflow: auto;
}

/* onto the posts */
#forumposts
{
   clear: both;
}
#forumposts .cat_bar
{
   margin: 0 0 2px 0;
}
/* author and topic information */
#forumposts h3 span#author
{
   margin: 0 7.7em 0 0;
}
#forumposts h3 img
{
   float: left;
   margin: 4px 0.5em 0 0;
}
#forumposts h3.catbg
{
   margin-bottom: 3px;
}
p#whoisviewing
{
   margin: 0;
   padding: 0.5em;
}
/* poster and postarea + moderation area underneath */
.moderatorbar
{
   clear: right;
}
.body_message
{
   padding: 20px 0;
   overflow: hidden;
}
.body_content
{
   background: #FFF;
   border-radius: 4px;
   padding: 20px;
}
@media (min-width: 992px)
{
   .body_content
   {
      margin-left: 35px;
   }
   .body_content span.arrow-left
   {
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 25px 35px 25px 0;
      border-color: transparent #ffffff transparent transparent;
      position: absolute;
      left: 15px;
   }
}
/* poster details and list of items */
.poster
{
   margin-bottom: 10px;
}
.poster h4, .poster ul
{
   padding: 0;
   margin: 0;
}
.poster h4
{
   margin: 0;
   font-size: 12px;
   width: auto;
   padding: 4px;
   border-radius: 4px 4px 0 0;
   background: #2ecc71;
   text-align: center;
}
.poster h4, .poster h4 a
{
   color: #FFF;
}
.poster ul
{
   border-radius: 0 0 4px 4px;
}
.poster ul li
{
   background: #FFF;
   padding: 5px 0;
   text-align: center;
}
.poster ul li:last-child
{
   border-radius: 0 0 4px 4px;
   padding: 0;
}
.poster ul li:last-child, .poster ul li:last-child ul
{
   border-radius: 0 0 4px 4px;
}
.poster ul ul
{
   margin: 0;
   padding: 5px 0;
   border: none;
   border-radius: 0 0 0 0;
   background: #3a3a3a;
}
.poster ul ul li
{
   display: inline;
   background: none;
}
.poster li.membergroup
{
   padding: 15px 10px;
}
.poster li.membergroup > span
{
   border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: bold;
    opacity: 0.8;
    padding: 8px 15px;
    text-align: center;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}
.poster li.postcount
{
   font-size: 1.6em;
   border-top: 1px solid rgba(51,51,51,0.1);
   border-bottom: 1px solid rgba(51,51,51,0.1);
}
.poster li.karma
{
   font-size: 1.6em;
   border-bottom: 1px solid rgba(51,51,51,0.1);
}
.poster li.title
{
   border-bottom: 1px solid rgba(51,51,51,0.1);
}
.poster li.avatar
{
   overflow: hidden;
   padding: 0;
}
.poster li.avatar img
{
   width: 150px;
}
.poster li.warning
{
   line-height: 1.2em;
   padding-top: 1em;
}
.poster li.warning a img
{
   vertical-align: bottom;
   padding: 0 0.2em;
}
.messageicon
{
   float: left;
   margin: 0 0.5em 0 0;
}
.messageicon img
{
   padding: 6px 3px;
}
div.postarea .btn-group, div.postarea .btn-group-vertical
{
   margin: 0;
}
.modifybutton
{
   clear: right;
   float: right;
   margin: 6px 20px 10px 0;
   text-align: right;
   font: bold 0.85em arial, sans-serif;
   color: #334466;   
}

/* The quick buttons */
div.quickbuttons_wrap
{
   padding: 0.2em 0;
   width: 100%;
   float: left;
}

ul.quickbuttons
{
   margin: 0.9em 11px 0 0;
   clear: right;
   float: right;
   text-align: right;
   font: bold 0.85em arial, sans-serif;
}
ul.quickbuttons li
{
   float: left;
   display: inline;
   margin: 0 0 0 11px;
}
ul.quickbuttons li a
{
   padding: 0 0 0 20px;
   display: block;
   height: 20px;
   line-height: 18px;
   float: left;
}
ul.quickbuttons a:hover
{
   color: #a70;
}
ul.quickbuttons li.quote_button
{
   background: url(../images/theme/quickbuttons.png) no-repeat 0 0;
}
ul.quickbuttons li.remove_button
{
   background: url(../images/theme/quickbuttons.png) no-repeat 0 -30px;
}
ul.quickbuttons li.modify_button
{
   background: url(../images/theme/quickbuttons.png) no-repeat 0 -60px;
}
ul.quickbuttons li.approve_button
{
   background: url(../images/theme/quickbuttons.png) no-repeat 0 -90px;
}
ul.quickbuttons li.restore_button
{
   background: url(../images/theme/quickbuttons.png) no-repeat 0 -120px;
}
ul.quickbuttons li.split_button
{
   background: url(../images/theme/quickbuttons.png) no-repeat 0 -150px;
}
ul.quickbuttons li.reply_button
{
   background: url(../images/theme/quickbuttons.png) no-repeat 0 -180px;
}
ul.quickbuttons li.reply_all_button
{
   background: url(../images/theme/quickbuttons.png) no-repeat 0 -180px;
}
ul.quickbuttons li.notify_button
{
   background: url(../images/theme/quickbuttons.png) no-repeat 0 -210px;
}
ul.quickbuttons li.inline_mod_check
{
   margin: 0 0 0 5px;
}

.post
{
   margin-top: 0.5em;
   clear: right;
}
.inner
{
   padding: 1em 0 ;
   margin: 0;
   border-top: 1px solid #CCC;
}
img.smiley
{
   vertical-align: bottom;
}
#forumposts .modified
{
   float: left;
}
#forumposts .reportlinks
{
   margin-right: 1.5em;
   text-align: right;
   clear: right;
}
#forumposts .signature, .post .signature
{
   margin: 1em 0 0 0;
}
#forumposts span.botslice
{
   clear: both;
}
.attachments hr
{
   clear: both;
   margin: 1em 0 1em 0;
}
.attachments
{
   padding: 1em 0 2em 0;
}
.attachments div
{
   padding: 0 0.5em;
}

/* Styles for the quick reply area.
---------------------------------------------------- */

#quickreplybox
{
   padding-bottom: 1px;
}
#quickReplyOptions .roundframe
{
   padding: 0 10%;
}
#quickReplyOptions form textarea
{
   height: 100px;
   width: 635px;
   max-width: 100%;
   min-width: 100%;
   margin: 0.25em 0 1em 0;
}
/* The jump to box */
#display_jump_to
{
   clear: both;
   padding: 5px;
   margin-top: 6px;
   text-align: right;
}

/* Separator of posts. More useful in the print stylesheet. */
#forumposts .post_separator
{
   display: none;
}

/* Styles for edit post section
---------------------------------------------------- */
form#postmodify .roundframe
{
   padding: 0 12%;
}
#post_header, .postbox
{
   padding: 0.5em;
   overflow: hidden;
}
#post_header dt, .postbox dt
{
   float: left;
   padding: 0;
   width: 15%;
   margin: .5em 0 0 0;
   font-weight: bold;
}
#post_header dd, .postbox dd
{
   float: left;
   padding: 0;
   width: 83%;
   margin: .3em 0;
}
#post_header img
{
   vertical-align: middle;
}
ul.post_options
{
   margin: 0 0 0 1em;
   padding: 0;
   list-style: none;
   overflow: hidden;
}
ul.post_options li
{
   margin: 0.2em 0;
   width: 49%;
   float: left;
}
#postAdditionalOptionsHeader
{
   margin-top: 1em;
}
#postMoreOptions
{
   border-bottom: 1px solid #cacdd3;
   padding: 0.5em;
}
#postAttachment, #postAttachment2
{
   overflow: hidden;
   margin: .5em 0;
   padding: 0;
   border-bottom: 1px solid #cacdd3;
   padding: 0.5em;
}
#postAttachment dd, #postAttachment2 dd
{
   margin: .3em 0 .3em 1em;
}
#postAttachment dt, #postAttachment2 dt
{
   font-weight: bold;
}
#postAttachment3
{
   margin-left: 1em;
}
#post_confirm_strip, #shortcuts
{
   padding: 1em 0 0 0;
}
.post_verification
{
   margin-top: .5em;
}
.post_verification #verification_control
{
   margin: .3em 0 .3em 1em;
}
/* The BBC buttons */
#bbcBox_message
{
   margin: 0.75em 0.5em;
}
#bbcBox_message div
{
   margin: 0.2em 0;
   vertical-align: top;
}
#bbcBox_message div img
{
   margin: 0 1px 0 0;
   vertical-align: top;
}
#bbcBox_message select
{
   margin: 0 2px;
}
/* The smiley strip */
#smileyBox_message
{
   margin: 0.5em;
}

/* Styles for edit event section
---------------------------------------------------- */
#post_event .roundframe
{
   padding: 0 12%;
}
#post_event fieldset
{
   padding: 0.5em;
   clear: both;
}
#post_event #event_main input
{
   margin: 0 0 1em 0;
   float: left;
}
#post_event #event_main div.smalltext
{
   width: 33em;
   float: right;
}
#post_event div.event_options
{
   float: right;
}
#post_event ul.event_main, ul.event_options
{
   padding: 0;
   overflow: hidden;
}
#post_event ul.event_main li
{
   list-style-type: none;
   margin: 0.2em 0;
   width: 49%;
   float: left;
}
#post_event ul.event_options
{
   margin: 0;
   padding: 0 0 .7em .7em;
}
#post_event ul.event_options li
{
   list-style-type: none;
   margin: 0;
   float: left;
}
#post_event #event_main select, #post_event ul.event_options li select, #post_event ul.event_options li .input_check
{
   margin: 0 1em 0 0;
}

/* Styles for edit poll section.
---------------------------------------------------- */

#edit_poll
{
   overflow: hidden;
}
#edit_poll fieldset
{
   padding: 0.5em;
   clear: both;
   overflow: hidden;
}
#edit_poll fieldset input
{
   margin-left: 8.1em;
}
#edit_poll ul.poll_main li
{
   padding-left: 1em;
}
#edit_poll ul.poll_main input
{
   margin-left: 1em;
}
#edit_poll ul.poll_main, dl.poll_options
{
   overflow: hidden;
   padding: 0 0 .7em .7em;
   list-style: none;
}
#edit_poll ul.poll_main li
{
   margin: 0.2em 0;
}
#edit_poll dl.poll_options dt
{
   width: 33%;
   padding: 0 0 0 1em;
}
#edit_poll dl.poll_options dd
{
   width: 65%;
}
#edit_poll dl.poll_options dd input
{
   margin-left: 0;
}

/* Styles for the recent messages section.
---------------------------------------------------- */

#readbuttons_top .pagelinks, #readbuttons .pagelinks
{
   padding-bottom: 1em;
   width: 60%;
}
#readbuttons .pagelinks
{
   padding-top: 1em;
}
#recent
{
   clear: both;
}

/* Styles for the move topic section.
---------------------------------------------------- */

#move_topic dl
{
   margin-bottom: 0;
}
#move_topic dl.settings dt
{
   width: 40%;
}
#move_topic dl.settings dd
{
   width: 59%;
}
.move_topic
{
   width: 710px;
   margin: auto;
   text-align: left;
}
div.move_topic fieldset
{
   padding: 0.5em;
}

/* Styles for the send topic section.
---------------------------------------------------- */

fieldset.send_topic
{
   border: none;
   padding: 0.5em;
}
dl.send_topic
{
   margin-bottom: 0;
}
dl.send_mail dt
{
   width: 35%;
}
dl.send_mail dd
{
   width: 64%;
}

/* Styles for the report topic section.
---------------------------------------------------- */

#report_topic dl
{
   margin-bottom: 0;
}
#report_topic dl.settings dt
{
   width: 20%;
}
#report_topic dl.settings dd
{
   width: 79%;
}

/* Styles for the split topic section.
---------------------------------------------------- */

div#selected, div#not_selected
{
   width: 49%;
}
ul.split_messages li.windowbg, ul.split_messages li.windowbg2
{
   margin: 1px;
}
ul.split_messages li a.split_icon
{
   padding: 0 0.5em;
}
ul.split_messages div.post
{
   padding: 1em 0 0 0;
   border-top: 1px solid #fff;
}

/* Styles for the merge topic section.
---------------------------------------------------- */
ul.merge_topics li
{
   list-style-type: none;
}
dl.merge_topic dt
{
   width: 25%;
}
dl.merge_topic dd
{
   width: 74%;
}
fieldset.merge_options
{
   clear: both;
}
.custom_subject
{
   margin: 0.5em 0;
}

/* Styles for the login areas.
------------------------------------------------------- */
.login
{
   width: 50%;
   margin: 0 auto;
}
@media (max-width: 768px) {
   .login
   {
      width: 100%;
   }
}
.login dl
{
   overflow: auto;
   clear: right;
}
.login dt, .login dd
{
   margin: 0 0 0.4em 0;
   width: 44%;
   padding: 0.1em;
}
.login dt
{
   float: left;
   clear: both;
   text-align: right;
   font-weight: bold;
}
.login dd
{
   width: 54%;
   float: right;
   text-align: left;
}
.login p
{
   text-align: center;
}

/* Styles for the registration section.
------------------------------------------------------- */
.register_error
{
   border: 1px dashed red;
   padding: 5px;
   margin: 0 1ex 1ex 1ex;
}
.register_error span
{
   text-decoration: underline;
}

/* Additional profile fields */
dl.register_form
{
   margin: 0;
   clear: right;
}

dl.register_form dt
{
   font-weight: normal;
   float: left;
   clear: both;
   width: 50%;
   margin: 0.5em 0 0 0;
}

dl.register_form dt strong
{
   font-weight: bold;
}

dl.register_form dt span
{
   display: block;
}

dl.register_form dd
{
   float: left;
   width: 49%;
   margin: 0.5em 0 0 0;
}

#confirm_buttons
{
   text-align: center;
   padding: 1em 0;
}

.coppa_contact
{
   padding: 4px;
   width: 32ex;
   background-color: #fff;
   color: #000;
   margin-left: 5ex;
   border: 1px solid #000;
}

.valid_input
{
   background-color: #f5fff0;
}
.invalid_input
{
   background-color: #fff0f0;
}

/* Styles for maintenance mode.
------------------------------------------------------- */
#maintenance_mode
{
   width: 75%;
   min-width: 520px;
   text-align: left;
}
#maintenance_mode img.floatleft
{
   margin-right: 1em;
}

/* common for all admin sections */
h3.titlebg img
{
   vertical-align: middle;
   margin-right: 0.5em;
   margin-top: -1px;
}
tr.titlebg td
{
   padding-left: 0.7em;
}
#admin_menu
{
   min-height: 2em;
   padding-left: 0;
}
#admin_content
{
   clear: left;
   padding-top: 0.5em;
}
/* Custom profile fields like to play with us some times. */
#admin_content .custom_field
{
   margin-bottom: 15px;
}
#admin_login .centertext
{
   padding: 1em;
}
#admin_login .centertext .error
{
   padding: 0 0 1em 0;
}

/* Styles for sidebar menus.
------------------------------------------------------- */
.left_admmenu, .left_admmenu ul, .left_admmenu li
{
   padding: 0;
   margin: 0;
   list-style: none;
}
#left_admsection
{
   width: 160px;
   float: left;
   padding-right: 10px;
}
.adm_section h4.titlebg
{
   font-size: 95%;
   margin-bottom: 5px;
}
#main_container
{
   position: relative;
}
.left_admmenu li
{
   padding: 0 0 0 0.5em;
}
.left_admmenu
{
   margin-bottom: 0.5em;
}
#main_admsection
{
   position: relative;
   left: 0;
   right: 0;
   overflow: hidden;
}

tr.windowbg td, tr.windowbg2 td, tr.approvebg td, tr.highlight2 td
{
   padding: 0.3em 0.7em;
}
#credits p
{
   padding: 0;
   font-style: italic;
   margin: 0;
}

/* Styles for generic tables.
------------------------------------------------------- */
.topic_table table
{
   width: 100%;
}
.topic_table .icon1, .topic_table .icon2, .topic_table .stats
{
   text-align: center;
}
#topic_icons
{
   margin: 1em 0 0 0;
}
#topic_icons .description
{
   margin: 0;
}
.topic_table table thead
{
   border-bottom: 1px solid #fff;
}
/* the subject column */
.topic_table td
{
   font-size: 1em;
}
.topic_table td.subject p, .topic_table td.stats
{
   font-size: 0.85em;
   padding: 0;
   margin: 0;
}
.topic_table td.lastpost
{
   font-size: 0.85em;
   line-height: 1.3em;
   padding: 4px;
}
.topic_table td.stickybg2
{
   background-image: url(../images/icons/quick_sticky.gif);
   background-repeat: no-repeat;
   background-position: 98% 4px;
}
.topic_table td.lockedbg2
{
   background-image: url(../images/icons/quick_lock.gif);
   background-repeat: no-repeat;
   background-position: 98% 4px;
}
.topic_table td.locked_sticky2
{
   background-image: url(../images/icons/quick_sticky_lock.gif);
   background-repeat: no-repeat;
   background-position: 98% 4px;
}
.topic_table td.lastpost
{
   background-image: none;
}

/* Styles for (fatal) errors.
------------------------------------------------- */

#fatal_error
{
   width: 80%;
   margin: auto;
}

.errorbox
{
   padding: 1em;
   border: 1px solid #cc3344;
   color: #000;
   background-color: #ffe4e9;
   margin-bottom: 1em;
}
.errorbox h3
{
   padding: 0;
   margin: 0;
   font-size: 1.1em;
   text-decoration: underline;
}
.errorbox p
{[close]
Title: Re: Reseller
Post by: Jim88 on September 21, 2015, 11:44:42 AM
You have a great theme and it looks fantastic. 
One question I have though is the mobile version of the Reseller Theme.  You have the Forum Title above the blue Title Bar but you also repeat it below the bar. 
It kind of looks lame to have it repeat. 
It would be nice to have the forum title on top and a slogan below the blue Title bar in the mobile version. 
If that is too hard t do, IMO it would be better to have the word "Home" on top of the blue Title bar and the Forum Title below the bar.  I think that would look much better. 
Thanks for a really good work though. 

Jim

Title: Re: Reseller
Post by: Megatrends on September 23, 2015, 02:55:44 PM
Hola buenos dias, queria saber como aumentar el tamaño de las secciones a lo ancho (http://prntscr.com/8jpgi5)
Muchas gracias  :-[
Title: Re: Reseller
Post by: Diego Andrés on September 24, 2015, 09:24:50 PM
En bootstrap.css busca .container y aumenta el width, si a eso te refieres.

Saludos!
Title: Re: Reseller
Post by: pumaspec on October 17, 2015, 06:38:34 AM
I agree.

I think it would be great to use this section as a custom link(s) area, that would be great.

For the time being what I have done is just removed my forum title and that get's rid of the bar.
Title: Re: Reseller
Post by: abhinavgupta18 on February 19, 2016, 12:57:55 AM
What To do with the psd logo file.
Please Tell
Title: Re: Reseller
Post by: rick on February 20, 2016, 01:39:31 AM
Quote from: abhinavgupta18 on February 19, 2016, 12:57:55 AM
What To do with the psd logo file.
Please Tell

psd files are Photshop files. You must have the Photoshop program (or similar program) in order to alter the files. There are some free programs on the internet that you can download and use to alter the .psd file but you will have to search and learn about them on your own.
Title: Re: Reseller
Post by: rick on February 20, 2016, 01:42:31 AM
I just installed a Google+ mod for SMF to register and login with G+.  Is there a way to ADD the google+ login option that comes with the mod to the login popup window?
Title: Re: Reseller
Post by: rick on February 24, 2016, 06:20:41 PM
 Is there a way to ADD the google+ login option that comes with the Google+ mod to the login popup window?

What files are the login pop up window listed under?

Thanks!
Title: Re: Reseller
Post by: pasqualino77 on February 26, 2016, 09:10:48 AM
i have a problem to add a banner
Title: Re: Reseller
Post by: YAXIM on March 25, 2016, 08:36:38 AM
Can You Tell Me How To Pin & Lock Topics???? I Can't Find.
Title: Re: Reseller
Post by: engrz on March 29, 2016, 11:00:25 PM
Hello

in re seller theme, login button is not working since few days. can you help me to resolve this issue.
Title: Re: Reseller
Post by: nona yanti on May 11, 2016, 05:52:39 AM
what the purpose of this forum ::)
Title: Re: Reseller
Post by: annarosy on June 28, 2016, 09:30:33 PM
i have a problem to add a banner, too
Title: Re: Reseller
Post by: Diego_Lopez on October 16, 2016, 04:25:47 PM
Buenas tardes, la cuestión es que me aparece un error el cual voy a adjuntar las dos imágenes en el post que cuando subo una foto de avatar me aparece un error "No puede escribirse en el directorio para subir archivos adjuntos. Tu archivo adjunto o avatar no se pudo guardar." cual es la solución?

Title: Re: Reseller
Post by: Nene on October 16, 2016, 08:38:42 PM
Hola que tal, revisaste los permisos de las carpetas?

Saludos!
Title: Re: Reseller
Post by: Diego_Lopez on October 17, 2016, 06:52:43 PM
Quote from: Nene on October 16, 2016, 08:38:42 PM
Hola que tal, revisaste los permisos de las carpetas?

Saludos!

Bien, específicamente que carpeta debo cambiar los permisos, o cuales.
Title: Re: Reseller
Post by: Nene on October 18, 2016, 02:05:02 AM
Quote from: Diego_Lopez on October 17, 2016, 06:52:43 PM
Bien, específicamente que carpeta debo cambiar los permisos, o cuales.

No quiero equivocarme... prueba primero con la carpeta "avatars" cambiando a 777 via FTP.

Si no se soluciona, haz lo mismo con la carpeta "attachments".
Title: Re: Reseller
Post by: Diego_Lopez on October 18, 2016, 12:06:12 PM
Quote from: Nene on October 18, 2016, 02:05:02 AM
No quiero equivocarme... prueba primero con la carpeta "avatars" cambiando a 777 via FTP.

Si no se soluciona, haz lo mismo con la carpeta "attachments".

Las dos carpetas con el permiso "777" y mismo mensaje.
Title: Re: Reseller
Post by: timidapsin on October 28, 2016, 05:13:12 PM
This theme still remains one of the best free responsive themes out there for SMF.
Thanks smftricks.
will use on my Forum (http://afriwap.com) soon
Title: Re: Reseller
Post by: mas1788 on January 13, 2017, 02:44:14 AM
Is there a way to install multiple browsers used on?
Title: Re: Reseller
Post by: hoodwarez on February 05, 2017, 04:53:40 PM
yo tambien tengo el mismo problema, no he logrado ver la solución, tambien hice una busqueda exhaustiva  en el foro de simplemachines, pero no encontre la solución del problema.

si saben la solución porfa compartanla.

mi web es actualidadjuridicacolombiana.xyz
Title: Re: Reseller
Post by: xuanh231 on March 20, 2017, 09:37:22 PM
As a free theme, i think it's nice :D
Title: Re: Reseller
Post by: godlike on March 21, 2017, 08:21:03 AM
Hello,

I want to change design of topics in reseller theme. I want to use default theme's display.template but when I copy and paste that I get display shifts. How can i fix that? Thank you.

The problem is this when I use default theme's display.template on reseller.

(https://smftricks.com/proxy.php?request=http%3A%2F%2Fi.hizliresim.com%2FldEPyp.png&hash=9825251592b74a907ac6a3a2315b9a428ffd0c04)

By the way, how can i make my forum names bold?
Title: Re: Reseller
Post by: thezontrox on April 22, 2017, 09:35:45 PM
tambien ocupo este tema y quisiera ampliar el ancho del foro y no se donde puedo hacer eso? si puediesen ayudarme
Title: Re: Reseller
Post by: Waploaded on June 02, 2017, 05:39:40 PM
Quote from: timidapsin on October 28, 2016, 05:13:12 PM
This theme still remains one of the best free responsive themes out there for SMF.
Thanks smftricks.
will use on my Forum (http://afriwap.com) soon

it looks Good on your forum, but seriously you have done several modifications tho..
Title: Re: Reseller
Post by: nastraders@gmail.com on September 21, 2017, 07:01:57 PM
is anyone else having this problem. Certain buttons don't work on the theme (reseller). For example the admin button on the top header points to https://xborderpros.com/forum/index.php#

and nothing happens with the "actions" button when press within a post?

Any help would be appreciated.

Thanks
Title: Re: Reseller
Post by: steventmcevoy on September 26, 2017, 07:02:31 PM
Hi i cant seem to get any of the links to work everything shows # check cashgorilla.com can you please help me I cant even access admin area.
Title: Re: Reseller
Post by: Naijasturf on October 14, 2017, 09:06:56 AM
I have been seeing lots of smf themes online, I keep researching about what smf is all about, when I found out, fortunately it grab my attention then decided to  create smf based site. When I created the site immediately I began to search for tips and tricks on smf site, finally I landed here and I must confess everything here is so informative and useful, you really got my work cut off 50%.

Your theme is well customized, thanks
Title: Re: Reseller
Post by: SoporteGSM on January 13, 2018, 04:06:34 PM
Amigos es posible añadir un carrusel al theme reseller??
Title: Re: Reseller
Post by: Diego Andrés on January 18, 2018, 11:28:10 PM
Puedes intentar basarte en Gaming Nation para lograrlo, aunque necesita un par de cambios en el css pero no es muy complicado
Title: Re: Reseller
Post by: Daniel on January 19, 2018, 10:09:27 AM
Tambien puedes mirar este tutorial: https://www.simplemachines.org/community/index.php?topic=546034.0
Saludos!
Title: Re: Reseller
Post by: flexsingh on March 29, 2018, 10:52:29 AM
Hi guys,

I've managed to setup the Reseller theme for my forum www.flexsingh.com (http://www.flexsingh.com) But it seems when site is loaded on mobile it is zoomed in.

I've checked for
Code Select
<meta name="viewport" content="width=device-width, initial-scale=1"/> and this code exists in the index.template.php file.

Any help or advice appreciated.
Title: Re: Reseller
Post by: flexsingh on March 29, 2018, 10:59:48 AM
Hi guys,

Is it possible to have the following options displayed as separate buttons rather than a drop down?

I've attached screenshot of my forum www.flexsingh.com  what menus buttons I would like. Currently the post options only appear as drop downs. But would like buttons for each option.

Title: Re: Reseller
Post by: stoska on March 29, 2018, 12:12:44 PM
set screenshot
Title: Re: Reseller
Post by: flexsingh on March 29, 2018, 12:27:37 PM
Quote from: stoska on March 29, 2018, 12:12:44 PM
set screenshot

I've attached screenshot how it loads on mobile...
Title: Re: Reseller
Post by: Boban ツ on March 29, 2018, 02:00:43 PM
Open portal.css find this line 292:
Code Select

body {
    min-width: 750px;
}


replace that with this:
Code Select
body {
    min-width: 100%;
}

Title: Re: Reseller
Post by: flexsingh on March 29, 2018, 02:50:44 PM
Quote from: Boban ツ on March 29, 2018, 02:00:43 PM
Open portal.css find this line 292:

body {
    min-width: 750px;
}


replace that with this:
body {
    min-width: 100%;
}


Wow! That fixed It! Thank you so much! Is there any chance you can help with my other query I posted? I want buttons to appear for replying, modifying etc post...

https://smftricks.com/index.php?topic=1654.0
Title: Re: Reseller
Post by: flexsingh on March 29, 2018, 11:49:39 PM
When viewing the forum via mobile, when reading posts... the posters avatar appears huge. Is there anyway to resize this just for mobile so it can appear smaller and not fill the screen? I've attached a screenshot and here is the link of an example page...

http://flexsingh.com/articles/tabata-training/
Title: Re: Reseller
Post by: Boban ツ on March 31, 2018, 05:41:14 AM
Open index.css find this and change width to 150px.
Code Select
.poster li.avatar img {
    width: 100%;
}
Title: Re: Reseller
Post by: SoporteGSM on April 24, 2018, 07:18:51 PM
Estas acciones marcan error y no quiero dañar el archivo:

Reemplazar

Code Select

echo '
<form action="', $scripturl, '?action=quickmod2;topic=', $context['current_topic'], '.', $context['start'], '" method="post" accept-charset="', $context['character_set'], '" name="quickModForm" id="quickModForm" style="margin: 0;" onsubmit="return oQuickModify.bInEditMode ? oQuickModify.modifySave(\'' . $context['session_id'] . '\', \'' . $context['session_var'] . '\') : false">';


Code Select

// AJAX Style Thank You Post
if (!empty($modSettings['thankYouPostAJAX']))
{
echo '
<script language="JavaScript" type="text/javascript">
var thank_you_ajax_url = smf_scripturl + \'?action=thankyouajax;topic=' . $context['current_topic'] . '\';

function thankyou(msg_id) {
// Follow the link if no ajax support...
if (!window.XMLHttpRequest)
return true;

// Standard Variables
var elementName = "ThankOMaticID" + msg_id;
var elementButton = "buttonThxID" + msg_id;
var elementLockButton = "thank_lock_button_" + msg_id;
var elementDeleteButton = "thank_delete_button_" + msg_id;

// Tell him that something loading :)
ajax_indicator(true);

// Remove the Thank You Button :)
document.getElementById(elementButton).style.display = "none";
document.getElementById(elementLockButton).style.display = "none";
document.getElementById(elementDeleteButton).style.display = "none";

var thank_you_ajax_thx = thank_you_ajax_url + ";sa=thx;msg=" + msg_id;
var data = ThankYouLoadTextData(thank_you_ajax_thx, elementName, elementButton, elementDeleteButton, elementLockButton);

return !data;
}

function ThankYouLoadTextData(url, elementName, elementButton, elementDeleteButton, elementLockButton) {
if (!window.XMLHttpRequest)
return false;

request = new XMLHttpRequest();
request.onreadystatechange = function() {
if (request.readyState != 4)
return;
if (request.responseText != null && request.status == 200) {
if (request.responseText.substr(0, 7) == "#ERROR#") {
setInnerHTML(document.getElementById("Error" + elementName), request.responseText.substr(7));
document.getElementById(elementName).style.display = "block";
document.getElementById(elementButton).style.display = "inline";
document.getElementById(elementLockButton).style.display = "none";
document.getElementById(elementDeleteButton).style.display = "none";
ajax_indicator(false);
}
else {
document.getElementById(elementName).style.display = "block";
setInnerHTML(document.getElementById(elementName), request.responseText);
document.getElementById(elementButton).style.display = "none";
document.getElementById(elementLockButton).style.display = "inline";
document.getElementById(elementDeleteButton).style.display = "inline";
ajax_indicator(false);
}
return false;
}
else {
return true;
}
}
// Load the Request!
request.open("GET", url, true);
request.send(null);
return request;
}
</script>';
}

echo '
<form action="', $scripturl, '?action=quickmod2;topic=', $context['current_topic'], '.', $context['start'], '" method="post" accept-charset="', $context['character_set'], '" name="quickModForm" id="quickModForm" style="margin: 0;" onsubmit="return oQuickModify.bInEditMode ? oQuickModify.modifySave(\'' . $context['session_id'] . '\', \'' . $context['session_var'] . '\') : false">';


Reemplazar:

Code Select

// Show avatars, images, etc.?


Code Select

// Show some Thank-O-Matic Stats ;D
if (!empty($modSettings['thankYouPostDisplayPage']) && (empty($modSettings['thankYouPostDisplayDisableBecame']) || empty($modSettings['thankYouPostDisplayDisableMade'])))
{
echo '
<li>', $txt['thank_you_post_thx_display'], '</li>';
// Disabled?
if(empty($modSettings['thankYouPostDisplayDisableMade']))
echo '
<li>-', $txt['thank_you_post_made_display'], ': ', $message['member']['thank_you_post']['made'], '</li>';

// Disabled?
if(empty($modSettings['thankYouPostDisplayDisableBecame']))
echo '
<li>-', $txt['thank_you_post_became_display'], ': ', $message['member']['thank_you_post']['became'], '</li>';
}

// Show avatars, images, etc.?


Reemplazar:

Code Select

// Maybe we can approve it, maybe we should?


Quote
      elseif (($message['thank_you_post']['post'] && !$message['thank_you_post']['locked']) || (($message['thank_you_post']['lock'] || $message['thank_you_post']['delete']) && $message['thank_you_post']['isThankYouPost']))
         echo '
                        <ul class="reset smalltext quickbuttons">';
                        
      // Maybe we can approve it, maybe we should?

Reemplazar:

Code Select

// Can we restore topics?


Code Select

// Can do some Thank You Post things :)
if ($message['thank_you_post']['post'] && !$message['thank_you_post']['locked'])
{
echo '
<li class="thank_you_button"><span id="buttonThxID' . $message['id'] . '" style="display: inline;"><a id="buttonThxHrefID' . $message['id'] . '" href="', $scripturl, '?action=thankyou;topic=', $context['current_topic'], '.0;msg=', $message['id'], '"'.(!empty($modSettings['thankYouPostAJAX']) ? ' onclick="return thankyou(' . $message['id'] . ');"' : '').'>', $txt['thank_you_post_post_b'], '</a></span></li>';

if(!empty($modSettings['thankYouPostAJAX']) && $context['browser']['is_ie']) {
// I HATE INTERNET EXPLORER!!!!!!!!!!!!!!!!!!!!!!!
echo '
<script language="JavaScript" type="text/javascript">
// Rewrite the url :x so that internet explorer can not follow it
document.getElementById("buttonThxHrefID' . $message['id'] . '").href = "#msg=' . $message['id'] . '";
</script>';
}
}

// This is the Thank-O-Matic Lock Button with Ajax special Addon :D
if ($message['thank_you_post']['lock'] && $message['thank_you_post']['isThankYouPost'])
echo '
<li class="', $message['thank_you_post']['locked'] ? 'thank_you_open_button' : 'thank_you_lock_button', '"><a href="', $scripturl, '?action=thankyoupostlock;topic=', $context['current_topic'], '.0;msg=', $message['id'], '">', $message['thank_you_post']['locked'] ? $txt['thank_you_post_open_b'] : $txt['thank_you_post_lock_b'], '</a></li>';
elseif ($message['thank_you_post']['lock'] && !$message['thank_you_post']['isThankYouPost'] && !empty($modSettings['thankYouPostAJAX']) && empty($modSettings['thankYouPostAJAXModButtonsDisable']))
echo '
<li class="', $message['thank_you_post']['locked'] ? 'thank_you_open_button' : 'thank_you_lock_button', '" id="thank_lock_button_' . $message['id'] . '" style="display: none;"><a href="', $scripturl, '?action=thankyoupostlock;topic=', $context['current_topic'], '.0;msg=', $message['id'], '">', $message['thank_you_post']['locked'] ? $txt['thank_you_post_open_b'] : $txt['thank_you_post_lock_b'], '</a></li>';
// This will prevent Java Script errors on most browser...
elseif (!empty($modSettings['thankYouPostAJAX']) || !empty($modSettings['thankYouPostAJAXModButtonsDisable']))
echo '
<span id="thank_lock_button_' . $message['id'] . '" style="display: none;"></span>';

// This is the Thank-O-Matic Delete Button with Ajax special Addon ;P
if ($message['thank_you_post']['delete'] && $message['thank_you_post']['isThankYouPost'])
echo '
<li class="thank_you_delete_button"><a href="', $scripturl, '?action=thankyoupostdelete;topic=', $context['current_topic'], '.0;msg=', $message['id'], ';sesc=', $context['session_id'], '" onclick="return confirm(\'', $txt['remove_thank_you_post'], '?\');">', $txt['thank_you_post_delete_b'], '</a></li>';
elseif ($message['thank_you_post']['delete'] && !$message['thank_you_post']['isThankYouPost'] && !empty($modSettings['thankYouPostAJAX']) && empty($modSettings['thankYouPostAJAXModButtonsDisable']))
echo '
<li class="thank_you_delete_button" id="thank_delete_button_' . $message['id'] . '" style="display: none;"><a href="', $scripturl, '?action=thankyoupostdelete;topic=', $context['current_topic'], '.0;msg=', $message['id'], ';sesc=', $context['session_id'], '" onclick="return confirm(\'', $txt['remove_thank_you_post'], '?\');">', $txt['thank_you_post_delete_b'], '</a></li>';
// This will prevent Java Script errors on most browser...
elseif (!empty($modSettings['thankYouPostAJAX']) || !empty($modSettings['thankYouPostAJAXModButtonsDisable']))
echo '
<span id="thank_delete_button_' . $message['id'] . '" style="display: none;"></span>';

// Can we restore topics?


Reemplazar:

Code Select

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


Code Select

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

// Thank-O-Matic okay close the ul on sometimes :D
elseif (($message['thank_you_post']['post'] && !$message['thank_you_post']['locked']) || (($message['thank_you_post']['lock'] || $message['thank_you_post']['delete']) && $message['thank_you_post']['isThankYouPost']))
echo '
</ul>';


Agregar antes:

Code Select
<hr class="post_separator" />';

Code Select

';

// Show the Thank You list or the link or.... nothing? XD
echo '
<div class="ThankOMatic ', $message['approved'] ? ($message['alternate'] == 0 ? 'windowbg' : 'windowbg2') : 'approvebg', '" style="display: '.($message['thank_you_post']['isThankYouPost'] ? 'block' : 'none').';" id="ThankOMaticID' . $message['id'] . '">
<span class="error" id="ErrorThankOMaticID' . $message['id'] . '"></span>';
// Output the Template for Thank-O-Matic (Normal found in the index.template.php)
// It will fall back into a standard function, if this template_thank_you_post doesn't exists!
if ($message['thank_you_post']['isThankYouPost'])
{
// Mistake? Function not loaded oO.
if (empty($context['call_thank_you_post_func']))
loadThankYouTemplateFunctions();

// Call the correct function =D
$context['call_thank_you_post_func']($message['thank_you_post'], $message['id']);
}
echo '
</div>


Reemplazar:

Code Select

// Restore topic. eh?  No monkey business.


Code Select

if($context['thank_you_post_unlock_all'])
$mod_buttons[] = array('text' => 'thank_you_post_unlock_all', 'image' => 'thankyoulock2.png', 'lang' => true, 'url' => $scripturl . '?action=thankyoupostunlockall;topic='  . $context['current_topic'] . '.0');

// Restore topic. eh?  No monkey business.


Adjunto mi archivo y gracias de antemano!!!
Title: Re: Reseller
Post by: EduardO on April 27, 2018, 10:21:24 PM
Hola, pero me puedes decir que tutorial intentas hacer?

Me imagino que quieres hacer mi tutorial que alguna vez coloqué en otro sitio de smf, en donde el boton gracias se reemplaza por la parte inferior.

Saludos.
Title: Re: Reseller
Post by: SoporteGSM on May 05, 2018, 08:18:33 PM
Si amigo, pero no encuentro el tema en cuestion, me ayudas por fa??
Title: Re: Reseller
Post by: EduardO on May 06, 2018, 06:49:24 PM
Claro, puedes leer este hilo Aqui (http://www.smfpersonal.net/soporte/reemplazar-el-boton-gracias-por-una-imagen-t7496.0.html;msg51799#msg51799)
Title: Re: Reseller
Post by: SoporteGSM on August 10, 2018, 12:55:34 PM
Hola de nuevo yo... amigo el punto es solo hacer la modificaciones para que aparezcan los botones de gracias en mi Displey template.

pd. Solo deseo que el boton de gracias deseo que este afuera del menu de acciones a mano izquierda... (https://www.simplemachines.org/community/index.php?action=dlattach;topic=561566.0;attach=258814;image)
Title: Re: Reseller
Post by: AppleCrazy on October 27, 2018, 11:02:11 PM
Que tal

Recientemente instale el Theme Reseller pero he notado que no funciona los botones desplegables, por ende no puedo acceder a las páginas directamente desde esos botones.

(https://i.imgur.com/zY9Xm04.png)
Title: Re: Reseller
Post by: AppleCrazy on October 29, 2018, 01:52:11 PM
Que tal colegas

Tengo instalado el Theme Reseller en mi foro pero al activar el SSL me ha dejado de funcionar el menú despegable, no se abre, a que se debe esto o como puedo solucionar?

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

Saludo, espero pronta respuesta.
Title: Re: Reseller
Post by: AppleCrazy on November 30, 2018, 11:42:54 AM
Que tal colegas

Bueno instale el SA Shop en mi foro con Theme Reseller y en el display no aparece el inventario y tampoco aparece el enviar o ver inventario, alguna solución a ello?
Title: Re: Reseller
Post by: Diego Andrés on December 02, 2018, 01:43:13 PM
Este mod actualmente no tiene soporte y es por ello que no se encuentra disponible en nuestro sitio
Title: Re: Reseller
Post by: AppleCrazy on December 10, 2018, 10:05:48 PM
Seria bueno que sea retirado de simplemachines ya que en la mayoría de themes por no decir que en todos no esta funcionando correctamente o necesita soporte el cual ya no se esta brindando aquí que es la página creado del MOD.

Saludos.
Title: Re: Reseller
Post by: Diego Andrés on December 11, 2018, 01:02:27 AM
El mod funciona y es compatible con el theme default. No tiene soporte porque la nueva versión que desarrollé no es compatible con SMF 2.0, y la anterior no se actualizará porque fue hecha por otro autor.
Saludos
Title: Re: Reseller
Post by: AppleCrazy on December 11, 2018, 11:56:55 AM
Quote from: Diego Andrés on December 11, 2018, 01:02:27 AM
El mod funciona y es compatible con el theme default. No tiene soporte porque la nueva versión que desarrollé no es compatible con SMF 2.0, y la anterior no se actualizará porque fue hecha por otro autor.
Saludos

Vale gracias, una ultima consulta, como editar el ancho del theme Reseller?

(https://i.imgur.com/IPBnkiC.png)
Title: Re: Reseller
Post by: Diego Andrés on December 11, 2018, 11:32:18 PM
En bootstrap.css busca .container y edita la que dice 1170px

Saludos
Title: Re: Reseller
Post by: Limkos on February 16, 2019, 05:56:39 AM
Hi, in my forum i hace theme Reseller, how optimize ?

https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fwww.forooposiciones.es

Thanks

Title: Re: Reseller
Post by: delwar on April 02, 2019, 04:52:34 PM
This happens if you have SSL installed. I am facing the same problem.
Title: Re: Reseller
Post by: SN on February 24, 2020, 03:01:39 AM
I love this theme, exactly what I was looking for!

I do have 1 issue though. when I use my phone to view the forum using this theme, I do get a scroll bar at the bottom... where on the demo site it was perfectly responsive using my phone.

I haven't made any edits to the theme I have just left it default and I am using SMF version 2.0.17.

Any help would be great thanks!
Title: Re: Reseller
Post by: Diego Andrés on February 24, 2020, 03:25:53 PM
Quote from: SN on February 24, 2020, 03:01:39 AM
I love this theme, exactly what I was looking for!

I do have 1 issue though. when I use my phone to view the forum using this theme, I do get a scroll bar at the bottom... where on the demo site it was perfectly responsive using my phone.

I haven't made any edits to the theme I have just left it default and I am using SMF version 2.0.17.

Any help would be great thanks!

Cannot reproduce this on a clean installation
Title: Re: Reseller
Post by: Klemenza on April 04, 2020, 12:20:29 PM
I have a problem! I installed the theme and everything worked perfectly until I wrote the first post. The forum crashes and I can only open it through history and when I'm logged in. He who is not logged in does not see him. I delete the post and the forum works perfectly again. Where is the problem?
Title: Re: Reseller
Post by: Diego Andrés on April 04, 2020, 03:42:16 PM
The theme is not likely the culprit, might be a mod breaking your forum.
Have you checked the error log after this issue appears?
Title: Re: Reseller
Post by: Klemenza on April 04, 2020, 10:19:41 PM
You are probably right about the template, but nowhere does it indicate that there is an error. I admit I don't know what the problem is ...
Title: Re: Reseller
Post by: jbridges87 on May 24, 2020, 08:36:30 PM
Hi there, first off, thank you for this great theme. I have been running it on my site now for a few months and I love the responsive layout.
I'm looking to modify the entire width of the theme. In the smf default theme, this was found under Admin/Current theme, but there's no such setting in the Reseller theme.

Could you offer a suggestion as to how I could achieve this?

Thanks
Title: Re: Reseller
Post by: Diego Andrés on May 24, 2020, 10:30:53 PM
In the bootstrap.css file
Code Select
.container {
    width: 1170px;
}


Change the width for it  O:-)
Title: Re: Reseller
Post by: jbridges87 on May 25, 2020, 10:51:18 AM
Great, and this won't affect the viewing on mobile devices at all, correct?
Title: Re: Reseller
Post by: Diego Andrés on May 25, 2020, 11:26:23 AM
Haven't tested it but I would assume it won't
Title: Re: Reseller
Post by: jbridges87 on May 25, 2020, 11:35:15 AM
Okay thanks
Title: Re: Reseller
Post by: jbridges87 on June 27, 2020, 10:30:44 PM
I'm having an issue where Google is reporting that a board on my forum is not mobile friendly.
I've noticed that when viewing the forum on mobile, sometimes the view gets really big, and I need to zoom out using my fingers. Also, as you can see in the screenshot attached, there's so much empty space around the content, and from mobile, you can actually scroll into the grey area.

Do you know why Google would be reporting this issue?
Title: Re: Reseller
Post by: incomal on July 02, 2020, 10:20:47 AM
I'm not sure how to post a topic in Reseller, so I'll just reply.

I like this theme the best, but I'm having a problem with the size of user avatars within the posts.  They're really big, and on a smartphone they take up more then half of an andriod desktop.  I've tried adjusting the size in avatar settings, but that changes nothing.

Help is appreciated.
Title: Re: Reseller
Post by: coastalfans on July 12, 2020, 12:34:06 PM
Hello,

First off, I wanted to say that I love this theme!  It's very nice, and we're going to be upgrading my forum to it after 10 years of using another theme.

I know that this is not the proper support thread, but I can't seem to access the support forum that was linked earlier in the thread - so I'll have to ask my question here.

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: coastalfans on July 15, 2020, 05:48:34 PM
Quote from: coastalfans on July 12, 2020, 12:34:06 PM
Hello,

First off, I wanted to say that I love this theme!  It's very nice, and we're going to be upgrading my forum to it after 10 years of using another theme.

I know that this is not the proper support thread, but I can't seem to access the support forum that was linked earlier in the thread - so I'll have to ask my question here.

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?

Hi,

We're hoping to go live with the new theme this coming Saturday and I'm hoping to have this issue fixed before then.  Can anyone help me out?  Thanks in advance!  :)
Title: Re: Reseller
Post by: yosk on June 26, 2022, 06:34:19 AM
how can I donwload?
im getting :Sorry, this section isn't available at this time.

plus. how can i preview the templates?
Title: Re: Reseller
Post by: AppleCrazy on July 05, 2022, 07:33:03 PM
Actualizaran este Theme a SMF 2.1.2???
Title: Re: Reseller
Post by: Diego Andrés on July 07, 2022, 09:57:09 AM
Próximamente es posible.
Title: Re: Reseller
Post by: jhonny97or on September 17, 2022, 11:59:07 AM
Quote from: Diego Andrés on July 07, 2022, 09:57:09 AMPróximamente es posible.

If it could be installed for 2.1.2?