sixxkilur |
11-21-2016 06:11 AM |
Quote:
Originally Posted by invitezone
(Post 2390964)
Working fine in 4.2
I had to change the navbar tab size to px like was suggested in one of the posts and all is well.
The snow is a bit rubbish though so I added another snow mod I found somewhere and it looks great.
The only issue is the quick style chooser has no links in it so once the theme is selected there is no changing out of it using the quick style chooser.
I would copy the code from another theme and overwrite it in this theme but I have no idea where to find it lol.
|
Easy fix for the empty quick style chooser.
look in footer template and find
Code:
<if condition="$show['quickchooser']">
<td class="tfoot">
<select name="styleid" onchange="switch_id(this, 'style')">
<optgroup label="$vbphrase[quick_style_chooser]">
$quickchooserbits
</optgroup>
</select>
</td>
</if>
<if condition="$show['languagechooser']">
replace the above code with.
Code:
<vb:if condition="$show['quickchooser']">
<select name="styleid" onchange="switch_id(this, 'style')">
<optgroup label="{vb:rawphrase quick_style_chooser}"><option class="hidden"></option></optgroup>
<vb:if condition="$quickchooserbits1">
<vb:if condition="$quickchooserbits2">
<optgroup label=" {vb:rawphrase standard_styles}">
</vb:if>
{vb:raw quickchooserbits1}
<vb:if condition="$quickchooserbits2">
</optgroup>
</vb:if>
</vb:if>
<vb:if condition="$quickchooserbits2">
<vb:if condition="$quickchooserbits1">
<optgroup label=" {vb:rawphrase mobile_styles}">
</vb:if>
{vb:raw quickchooserbits2}
<vb:if condition="$quickchooserbits1">
</optgroup>
</vb:if>
</vb:if>
</select>
</vb:if>
|