[IMPLEMENTED] Buttons better clickable

Tealk

Member
if you change in tlg_group_wrapper_macros like this then you could click the buttons better.
Bevore:
HTML:
<li class="groupViewNav--item groupViewNav--{$navId}{{ ($selected == $navId) ? ' is-active' : '' }}">
    <a href="{$navItem.link}">{$navItem.title}</a>
    <xf:if is="$navItem.counter > 0">
        <span class="badge badge--highlighted">{$navItem.counter}</span>
    </xf:if>
</li>
After:
HTML:
<a href="{$navItem.link}">
    <li class="groupViewNav--item groupViewNav--{$navId}{{ ($selected == $navId) ? ' is-active' : '' }}">
        {$navItem.title}
        <xf:if is="$navItem.counter > 0">
            <span class="badge badge--highlighted">{$navItem.counter}</span>
        </xf:if>
    </li>
</a>
 
Do you have hard click on item? Can you give more details?
 
Sorry i dont know what do you mean with hard click.

With the second variant you don't have to reach the link tag with the mouse until you can click on the button.
The way you wrote it is 12px at the top and bottom which is not recognized as a link and so you have to aim better before you can click on the menu.
 
Back
Top