Reseller

Started by Daniel, July 28, 2014, 09:19:18 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

cannabisgamer

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

jstuie

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.

Diego Andrés

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

jstuie


Guliberg

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.

Diego Andrés

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

Guliberg

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/

Diego Andrés

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

Guliberg

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.

Diego Andrés

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!

Guliberg


Porr

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.

Porr

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.
Last Edit: November 06, 2014, 05:48:29 AM by Porr

Daniel

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.

Porr

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