Hello,
Im trying to add “File a Manual PIREP” to the sidebar of stilsa skin and ive added this to the app_top.php…
a class=“nav-link” href=“<?php echo url(‘/pireps/filepirep’); ?>”>
<i class=“fas fa-map-marked-alt”></i> <span>File A Manual PIREP</span>
</a>
But the text is in a weird purple color and its not aligned with the other text on the sidebar, anyone know what to do?
pureple means you have visited the link, try putting the <i> tage within the <span>
3 minutes ago, Strider said:
pureple means you have visited the link, try putting the <i> tage within the <span>
like this?
<a class=“nav-link” href=“<?php echo url(‘/pireps/filepirep’); ?>”>
<i class=“fas fa-map-marked-alt”><span>File A Manual PIREP</i></span>
</a>
that just changed the font
I mean
\<a class="nav-link" href="\<?php echo url('/pireps/filepirep'); ?\>"\> \<span\>\<i class="fas fa-map-marked-alt"\>File A Manual PIREP\</i\>\</span\>\</a\>
Im still getting the same thing