D&D Forums - MyBB Plugins & Themes
Moving "Hosted by" - Printable Version

+- D&D Forums - MyBB Plugins & Themes (https://developement.design/forum)
+-- Forum: MyBB Ressources (https://developement.design/forum/forumdisplay.php?fid=5)
+--- Forum: Free MyBB Themes (https://developement.design/forum/forumdisplay.php?fid=7)
+---- Forum: Support (https://developement.design/forum/forumdisplay.php?fid=12)
+---- Thread: Moving "Hosted by" (/showthread.php?tid=49)



Moving "Hosted by" - Esper - 02-17-2018

Currently I'm using this theme on icyboards, is there a way to move the "Hosted By Icyboards" somewhere else? It's currently overlapping users under "Who's Online" in the Emerald theme

https://i.imgur.com/XKNvIzV.jpg

Thanks for your help and for releasing this theme!


RE: Moving "Hosted by" - AmazOuz - 02-17-2018

Hello,
This code is not included in the theme, it's added by your host directly to the php page i guess, so you must contact them and let me know more Wink


RE: Moving "Hosted by" - Esper - 02-18-2018

I do have another question, I'm going to ask it here but if you want me to make a new thread I can too.

With this theme there is a sidescroll option, and once I scroll all the way to the right it has this: https://i.imgur.com/VoeRymP.jpg


RE: Moving "Hosted by" - AmazOuz - 02-18-2018

Hey,
I guess it is a problem of an edit you've made or of an old browser which denies some css code. Can you let me know more about your browser version and any edits you've made to the footer ?


RE: Moving "Hosted by" - Esper - 02-18-2018

I added in this into the coding.

Code:
<p style="" class="footer-links">
© Emerald - Powered by <a style="font-weight: bold; font-family: Noto Sans;" href="http://www.mybb.com"> MyBB </a>

{$hostedby}
</p>

Just the hosted by part. What it ended up doing was creating an extra gap at the bottom of the forum so I went into the css for .footer-distrubted and changed bottom to -80px so it would no longer have a random white gap. (Random white gap that was caused by the {$hostedby} https://i.imgur.com/8cfOnOT.jpg )


RE: Moving "Hosted by" - AmazOuz - 02-18-2018

Can you give me all the footer template please, then i'll test in on my local forums to see the problem Wink


RE: Moving "Hosted by" - Esper - 02-19-2018

Code:
</div></div><footer class="footer-distributed">

            

            <div class="footer-left">

            

                <p style="" class="footer-links">
                    © Emerald - Powered by <a style="font-weight: bold; font-family: Noto Sans;" href="http://www.mybb.com"> MyBB </a>
                    
            {$hostedby}
                </p>

                
            </div>


            <div style="" class="footer-right">

                

                <div class="footer-icons">

                    <a href="#"><i style="margin-top: 6px;" class="fa fa-youtube"></i></a>
<a href="#"><i style="margin-top: 6px;" class="fa fa-facebook"></i></a>
                    <a href="#"><i style="margin-top: 6px;" class="fa fa-twitter"></i></a>
                    <a href="#"><i style="margin-top: 6px;" class="fa fa-linkedin"></i></a>
                    <a href="#"><i style="margin-top: 6px;" class="fa fa-github"></i></a>

                </div>

            </div>
        <div style="display: block;" class="scrollToTop"><i class="fa fa-angle-up"></i></div>
        <div class="scrollToDown"><i class="fa fa-angle-down"></i></div>
        
        </footer>
<script>
    if (connected == 0)
    { jQuery("#mobile_member").html("<a href='member.php?action=login'>Login</a> - <a href='member.php?action=register'>Register</a>"); }
    if (connected == 1)
    { document.getElementById("mobile_member").innerHTML = '<a title="Inbox" href="private.php">Inbox</a> - <a title="User CP" href="usercp.php">User CP</a> - <a title="Log Out" href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}">Logout</a>'; }
</script>



RE: Moving "Hosted by" - AmazOuz - 02-19-2018

I tested the code and it works perfect for me.
Can you delete the {$hostedby} and see ?
Otherwise, it could be an old old browser/system causing that.