Hi, thanks @digibomb for great theme!
I'm using Brand Friendly 1.2 with Vanilla 2.1.8p2.
How to place this stuff on .Banner?
Thanks for your help.
Add this line in the default.master.php of your theme inside the div where you want it to appear.
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
or just {module name="MeModule"} if you have a .tpl master view.
{module name="MeModule"}
this is how this forum does it:https://github.com/vanilla/community/blob/master/themes/vforg/views/default.master.tpl#L27
My themes: pure | minusbaseline - My plugins: CSSedit | HTMLedit | InfiniteScroll | BirthdayModule | [all] - PM me about customizations
VanillaSkins.com - Plugins, Themes and Graphics for Vanillaforums OS
Thanks guys! There is no default.master.php and I added {module name="MeModule"} in default.master.tpl. It works! Awesome!
One more question - as I added module in right frame how to direct dropdowns (Notifications, Bookmarks, etc.) to the left?
Change the module to:
{module name="MeModule" CssClass="FlyoutRight"}
Thank you so much!
Comments
Add this line in the default.master.php of your theme inside the div where you want it to appear.
<?php $this->AddModule('MeModule');?>❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
or just
{module name="MeModule"}
if you have a .tpl master view.this is how this forum does it:
https://github.com/vanilla/community/blob/master/themes/vforg/views/default.master.tpl#L27
My themes: pure | minusbaseline - My plugins: CSSedit | HTMLedit | InfiniteScroll | BirthdayModule | [all] - PM me about customizations
VanillaSkins.com - Plugins, Themes and Graphics for Vanillaforums OS
Thanks guys! There is no default.master.php and I added {module name="MeModule"} in default.master.tpl. It works! Awesome!
One more question - as I added module in right frame how to direct dropdowns (Notifications, Bookmarks, etc.) to the left?
Change the module to:
My themes: pure | minusbaseline - My plugins: CSSedit | HTMLedit | InfiniteScroll | BirthdayModule | [all] - PM me about customizations
VanillaSkins.com - Plugins, Themes and Graphics for Vanillaforums OS
Thank you so much!