mgmimw First Post Posted on: 03-13-16 01:52 PM
tabs

Hello I've been two days trying to figure out how I change them to a location? I want to change their location I want a customer can not cancel them to the location Change Location tabs tweets, weather, polls,
mewsoft Reply #: 1 Posted on: 03-13-16 06:00 PM
Re: tabs

Edit the Template "Frontpage" in your admin design module, Templates, select the template Frontpage, at the end find the code:


search : {
                    'movable': false,
                    'removable': true,
                    'collapsible': true,
                    editable: true,
                    colorClasses : ['color-red', 'color-blue', 'color-green', 'color-purpple', 'color-white', 'color-orange', 'color-yellow', 'color-gray', 'color-pink',  'color-black' ]
                }


you can repeat the above code for every tab/widget, the "search" is the id of the widget, the code in the template

is for the search box widget, you can repeat this code for every tab you want and just set the right values for the

params movable, removabel, collapsible, editable, to either false or true.

Examaple:


search : {
                    'movable': false,
                    'removable': false,
                    'collapsible': false,
                    editable: false,
                    colorClasses : ['color-red', 'color-blue', 'color-green', 'color-purpple', 'color-white', 'color-orange', 'color-yellow', 'color-gray', 'color-pink',  'color-black' ]
                },


weather : {
                    'movable': false,
                    'removable': false                    'collapsible': false,
                    editable: false,
                    colorClasses : ['color-red', 'color-blue', 'color-green', 'color-purpple', 'color-white', 'color-orange', 'color-yellow', 'color-gray', 'color-pink',  'color-black' ]
                },


categories : {
                    'movable': false,
                    'removable': false,
                    'collapsible': false,
                    editable: false,
                    colorClasses : ['color-red', 'color-blue', 'color-green', 'color-purpple', 'color-white', 'color-orange', 'color-yellow', 'color-gray', 'color-pink',  'color-black' ]
                }


You can repeat the code for all the widgets if you want.

Thanks


Mewsoft Support
www.mewsoft.com

mgmimw Reply #: 2 Posted on: 03-14-16 01:07 AM
tabs

Thank Good But how do I change their position? Right Left Center
mewsoft Reply #: 3 Posted on: 03-14-16 02:05 AM
Re: tabs

To change their position staticaly you just need to move the widget code inside the template Frontpage.

Thanks


Mewsoft Support
www.mewsoft.com

mgmimw Reply #: 4 Posted on: 03-14-16 03:38 AM
Re: tabs

Hello I can not change their position Can you give me an example maybe? Thank you
mewsoft Reply #: 5 Posted on: 03-14-16 10:47 AM
Re: tabs

Hello,


Each widget code in the Frontpage template is set between li tag like this:

             <li class="widget color-green" id="tweets"
               


            </li>

So all you need is to cut the widget code and past it to the location where you want it in your template, you just

move it as you edit or move any html code, it does not need programming or coding.


Mewsoft Support
www.mewsoft.com