Jon W
Well-known member
Spotted this while trying to remove all references to forums in NoForo...
On line 12 of node_page_level_2 template, replace line:
with:
(i.e., replace $forum with $page).
Because this then fixes the "bug" (any thoughts?) that page descriptions don't appear as tooltips (on non touch devices), fixing the above error then causes a problem that the tooltip text is too dark.
This can be fixed by replacing line 13:
with:
(i.e., removing the muted class from the blockquote).
On line 12 of node_page_level_2 template, replace line:
HTML:
<h3 class="nodeTitle"><a href="{xen:link pages, $page}" data-description="#nodeDescription-{$forum.node_id}">{$page.title}</a></h3>
HTML:
<h3 class="nodeTitle"><a href="{xen:link pages, $page}" data-description="#nodeDescription-{$page.node_id}">{$page.title}</a></h3>
Because this then fixes the "bug" (any thoughts?) that page descriptions don't appear as tooltips (on non touch devices), fixing the above error then causes a problem that the tooltip text is too dark.
This can be fixed by replacing line 13:
HTML:
<xen:if is="{$page.description}"><blockquote class="nodeDescription baseHtml muted" id="nodeDescription-{$page.node_id}">{xen:raw $page.description}</blockquote></xen:if>
HTML:
<xen:if is="{$page.description}"><blockquote class="nodeDescription baseHtml" id="nodeDescription-{$page.node_id}">{xen:raw $page.description}</blockquote></xen:if>