Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Pipee

#61
Chit Chat / Re: Serbia
May 03, 2014, 03:16:25 PM
thanks.

Welcome!
#62
Previews / Re: theme con boostrap :|
May 03, 2014, 03:15:48 PM
Muy bueno amigo, el menu lateral, no me hya gustado mucho, trata de ponerle otro color.
#65
Tips and Tutorials / Re: Theme multicolor [styleswitch]
February 13, 2014, 01:59:23 PM
Quote from: Aboul on February 13, 2014, 01:57:41 PM
Buenas...
No entendí ciertas cosas como por ejemplo:

Donde colocamos lo siguiente:




<ul class="colores">
<li>Colores:
        <a id="css del boton" onclick="javascript:chooseStyle(\'nombre del nuevo color\', 60)">Nombre del color</a>
</ul>




Y todo el final no lo entendi.

Ese es el "menu" por así decirlo, de cambiar el color, eso lo puedes poner en tu header... etc..
#66
Free Themes / Re: FastLine
February 13, 2014, 10:53:07 AM
Quote from: androbada525 on February 13, 2014, 07:14:08 AM
first of all I would like to laud all of you for this excellent theme
It is certainly THE BEST theme for SMF
Can you tell me how can I change the background image?
I like the one you guys have used
I would also like to remove the "Link 1 Link 2 Link 3 Link 4 Link 5" on the top
Can you tell me how to do that?
In case you want to see my forum, www.theteamk.co.nr

search in your index.template:

<ul class="links floatleft">
<li><a href="', empty($settings['link_top1_url']) ? '' : '' . $settings['link_top1_url'] . '', '">', empty($settings['link_top1']) ? $txt['link_top1'] : $settings['link_top1'], '</a></li>
<li><a href="', empty($settings['link_top2_url']) ? '' : '' . $settings['link_top2_url'] . '', '">', empty($settings['link_top2']) ? $txt['link_top2'] : $settings['link_top2'], '</a></li>
<li><a href="', empty($settings['link_top3_url']) ? '' : '' . $settings['link_top3_url'] . '', '">', empty($settings['link_top3']) ? $txt['link_top3'] : $settings['link_top3'], '</a></li>
<li><a href="', empty($settings['link_top4_url']) ? '' : '' . $settings['link_top4_url'] . '', '">', empty($settings['link_top4']) ? $txt['link_top4'] : $settings['link_top4'], '</a></li>
<li><a href="', empty($settings['link_top5_url']) ? '' : '' . $settings['link_top5_url'] . '', '">', empty($settings['link_top5']) ? $txt['link_top5'] : $settings['link_top5'], '</a></li>
</ul>


and delete.

Am, how to change the background.

go to images/theme/ of your theme, and replace backdrop.jpg.
#67
Tips and Tutorials / Theme multicolor [styleswitch]
February 13, 2014, 10:40:18 AM
Muy buenas!

Bueno viendo el post de Arnau sobre hacer un theme multicolor, haré un tutorial de la forma que uso, frecuentemente, esta forma la implemente en el theme "FlanK".

Buscamos en nuestro index.template lo siguiente:

$settings['require_theme_strings'] = false;

y lo remplazamos por:
$settings['require_theme_strings'] = true;



// The ?fin20 part of this link is just here to make sure browsers don't cache it wrongly.
echo '
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css?fin20" />';


Lo remplazamos por:
// The ?fin20 part of this link is just here to make sure browsers don't cache it wrongly.
    if (!empty($settings['style_switcher']) OR ($settings['style_switcher'])== 1)
{
            echo '
<link rel="stylesheet" type="text/css" title="default" href="', $settings['theme_url'], '/css/index.css" />';
    }
    else
{
if (($settings['style_switcher'])== 0)
{
            echo '
<link rel="stylesheet" type="text/css"title="default" href="', $settings['theme_url'], '/css/index.css" />';
}
    }


Eso hará que se pueda activar desde la administración cierta función.

Para añadir colores ponen lo siguiente debajo de
Quote// The ?fin20 part of this link is just here to make sure browsers don't cache it wrongly.
    if (!empty($settings['style_switcher']) OR ($settings['style_switcher'])== 1)
   {
            echo '
            <link rel="stylesheet" type="text/css" title="default" href="', $settings['theme_url'], '/css/index.css" />

Lo siguiente:
<link rel="alternate stylesheet" type="text/css" title="Nombre del color" href="', $settings['theme_url'], '/css/variants/Css del color.css" />

En el css del color, no es necesario que se llame igual que el nombre.

Buscamos en el index.template:
// Here comes the JavaScript bits!
echo '

Agregamos abajo:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="', $settings['theme_url'], '/scripts/styleswitch.js"></script>


Ahora, para cambiar el color por medio de un "Link", pondríamos lo siguiente:

<ul class="colores">
<li>Colores:
  <a id="css del boton" onclick="javascript:chooseStyle(\'nombre del nuevo color\', 60)">Nombre del color</a>
</ul>


Un ejemplo:
Añadi este color:
<link rel="alternate stylesheet" type="text/css" title="rojo" href="', $settings['theme_url'], '/css/variants/rojo.css" />

El link debería quedar así:
<a id="css del boton" onclick="javascript:chooseStyle(\'rojo\', 60)">Color Rojo</a>

Ahora buscamos en tu settings.template:
array(
'id' => 'enable_news',
'label' => $txt['enable_random_news'],
),
'',


Agregamos abajo:
array(
'id' => 'style_switcher',
'label' => $txt['style_switcher'],
),
'',






Añades el archivo styleswitch.js, en la carpeta scripts de tu theme.

Añades el archivo ThemeStrings.english.php en la carpeta languages, no es necesario que sea english, lo puedes remplazar por el idioma que tienes en default.
#68
Quote from: KaoX00 on February 12, 2014, 09:55:18 PM
Hola de nuevo, lamento molestar  :-\ , pero me ha surgido una duda...
Como se tendría que hacer para que al cambiar de color, no tenga que recargar la página de nuevo?

Saludos.
(creo que se usa un script, pero no tengo idea de cual, ni como se usa  :P)

Probablemente ahora, publique un tutorial sobre ello.
#69
Free Themes / Re: FastLine
February 12, 2014, 01:04:35 PM
Quote from: androbada525 on February 12, 2014, 10:09:41 AM
first of all I would like to laud all of you for this excellent theme
It is certainly THE BEST theme for SMF
Can you tell me how can I change the background image?
I like the one you guys have used
I would also like to remove the "Link 1 Link 2 Link 3 Link 4 Link 5" on the top
Can you tell me how to do that?
In case you want to see my forum, www.theteamk.co.nr


Please, friend, open a new post of support.
#70
Free Themes / Re: FastLine
February 11, 2014, 06:12:08 PM
Ok, good friend.

Try changing the opacity of the # content_secion, which is located in the css of the theme.

Example:

#content_section {
    background-color: rgba(50, 75, 120, 0.4);
    border-color: #6F4244;
    border-style: solid;
    border-width: 0 3px;
    padding: 10px 15px 30px;
}

Change the "background-color: rgba(50, 75, 120, 0.4);" What you highlight, that must change.

Example "background-color: rgba(50, 75, 120, 0.5);" "0.5" is "0.50".
#71
Free Themes / WoodE
February 02, 2014, 06:04:27 PM
Link to the theme


Free & Premium Responsive Themes for SMF




WoodE
Developed by Pipee

Features
  • Custom Links
  • Logo URL


Demo Online
GitHub
#72
Free Themes / AsLine
February 02, 2014, 06:01:29 PM
Link to the theme


Free & Premium Responsive Themes for SMF




AsLine
Developed by Pipee

Features
  • Custom Links
  • Logo URL


Demo Online
GitHub