theme name in mobile view - Orange - Printable Version +- WallBB Forums (https://wallbb.co.uk/forums) +-- Forum: Theme Section (https://wallbb.co.uk/forums/forumdisplay.php?fid=5) +--- Forum: Theme Support (https://wallbb.co.uk/forums/forumdisplay.php?fid=10) +--- Thread: theme name in mobile view - Orange (/showthread.php?tid=361) |
theme name in mobile view - Orange - NREN - 12-17-2020 [*]Your browser Firefox - latest [*]Device (Complete name like Apple iPhone X, Samsung Galaxy S8 etc) : Ubuntu 20.04 [*]Where you are getting the issue : On PC 20.04, Firefox [*]How to reproduce the issue : Resize the browser or view through mobile [*] [*] [*]I see this theme name in the menu bar when it switches to mobile view. Please tell me how to get rid of it [*]I am not sure whether I can ask more than one question in a single thread. Hence multiple threads.Thank. RE: theme name in mobile view - Orange - WallBB - 12-17-2020 You can edit this in header template, refer this thread for this https://wallbb.co.uk/forums/showthread.php?tid=17 RE: theme name in mobile view - Orange - NREN - 12-17-2020 Thanks. I tried this code as instructed in the header template Code: <a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a> It works for header logo in desktop mode. But in small screen mode, I can still see the theme name as text. Please see below It would have been fine if that is board name, but sadly this one is theme name. RE: theme name in mobile view - Orange - WallBB - 12-17-2020 You would find code for that in the same template. Code: <label for="drop" class="toggle"><i class="fas fa-bars float_right" aria-hidden="true"></i> Orange <img height="24px" width="24px" src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></label> Change it to Code: <label for="drop" class="toggle"><i class="fas fa-bars float_right" aria-hidden="true"></i> </label> RE: theme name in mobile view - Orange - NREN - 12-17-2020 I think it got into a mess when I tried it. Got it fixed by changing the text into a relevant one. Thanks. RE: theme name in mobile view - Orange - WallBB - 12-17-2020 /Closed |