Search code examples
phphtmlcssmybb

change mybb forum topic icons


With the code here, it gives random pictures to the subjects, I want to make that picture a single picture, what should I replace this code with?

<div class="forum-symbol" role="img" aria-label="{$forum['name']}" style="background-image: url('{$forum['v7_modern_asset_url']}/images/forum/{$forum['fid']}.png')"> what should i replace this code with


Solution

  • I think this is inside a loop you need to give the image URL an absolute path eg.

    <div class="forum-symbol" role="img" aria-label="{$forum['name']}" style="background-image: url('/folder/image-name.png')">
    

    I hope this helps