Hello everyone and thanks for making life simple and easy.
I have a forum that i want to header forum text(see below) to be a link so it can be clicked on.
How do I achieve this please?
See below.
I want to be site name to link back to the forum index.Lumpy Burgertushie wrote: Sun Dec 15, 2019 5:11 pm what do you want it to link to?
the logo already links to the index page or whatever you want to set it to in the admin panel.
to make the actual text of the site name to be a link would require an edit to the template files that you would have to redo each time you update etc.
robert
I want to be site name to link back to the forum index.KevC wrote: Sun Dec 15, 2019 5:27 pm A link forum would be much simpler. Realistically, no one will ever click that.
Code: Select all
h1 a { color: #FFF; }
h1 a:hover { color: #CCC; }
Code: Select all
h1 a {
color: #FFF;
text-decoration: underline;
}
h1 a:hover {
color: #CCC;
text-decoration: underline;
}
Code: Select all
<div id="site-description" class="site-description">
<a id="logo" class="logo" href="<!-- IF U_SITE_HOME -->{U_SITE_HOME}<!-- ELSE -->{U_INDEX}<!-- ENDIF -->" title="<!-- IF U_SITE_HOME -->{L_SITE_HOME}<!-- ELSE -->{L_INDEX}<!-- ENDIF -->"><span class="site_logo"></span></a>
<h1>{SITENAME}</h1>
<p>{SITE_DESCRIPTION}</p>
<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
</div>
Code: Select all
<div id="site-description" class="site-description">
<a id="logo" class="logo" href="<!-- IF U_SITE_HOME -->{U_SITE_HOME}<!-- ELSE -->{U_INDEX}<!-- ENDIF -->" title="<!-- IF U_SITE_HOME -->{L_SITE_HOME}<!-- ELSE -->{L_INDEX}<!-- ENDIF -->"><span class="site_logo"></span></a>
<h1><a href="{U_INDEX}" title="{L_INDEX}"><span>{SITENAME}</span></a></h1>
<p>{SITE_DESCRIPTION}</p>
<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
</div>