StickUp [SMF 2.0]

Started by Pipee, July 10, 2015, 07:17:52 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Pipee


StickUp - Responsive Theme

Spoiler
[close]

Responsive Theme
Spoiler
[close]

http://smftricks.com/index.php?action=store;sa=view;id=14

Last Edit: February 07, 2016, 09:39:07 PM by Diego Andrés

Pipee

Theme Update // Actualización del Theme

  • Avatar on Board, new code. // Nuevo código Avatar en el Board.

Mimmi

I'v just bought and installed your theme.  :) I need to have three color variants of it, to use on different boards. How do I achieve that. Just make a copy of red.css and adjust it? If so, how do I choose what color of the theme to use?  Or should I make a copy of the whole theme?

Mimmi

This is probably not the right way to do it, but just in case anybody else need a quick fix, I share mine:

When clicking the parent in the menu the menu toggles/collapses, but I want to be able to go to the link of the parent. I need to both go to the link of the parent and show/unshow the children.

I changed the code in index.template.php. Go to:
echo '
<ul class="treeview-menu">';


Add after so that the code becomes:
echo '
<ul class="treeview-menu">';
echo '<li><a href="', $button['href'], '"', isset($childbutton['target']) ? ' target="' . $childbutton['target'] . '"' : '', '>', $button['title'],'</a></li> ';

foreach ($button['sub_buttons'] as $childbutton)