Smoothy with 6 colors now ! - ThemesCorp.com [Deleted]

Allan updated Smoothy with 6 colors now ! - ThemesCorp.com with a new update entry:

Add UserBox System - v1.5.10.1

New release: 1.5.10.1

Add UserBox System !

It displays a small window in the header that displays your avatar, your number of Posts, Likes and Points.

A new Group and style properties have been created to enable or disable the UserBox system and/or Visitors Panel.

View attachment 141454

View attachment 141455

View attachment 141456

View attachment 141453

Read the rest of this update entry...
 
Allan updated Smoothy with 6 colors now ! - ThemesCorp.com with a new update entry:

Slider Responsive added - 1.6.0.0

New release 1.6.0.0
__________________


Slider Responsive is included now !

You can add 10 images.

You have 2 choices of locations, one just above the Forums List and one which will take the total width of the forum which will be placed below the navigation bar

A Usergroup permission allows you to set who can see the Slider Responsive.

There are 2 types of loader:
- Pie (cercle)
- Bar

We have created style properties (in our XenCore...

Read the rest of this update entry...
 
Allan updated Smoothy with 6 colors now ! - ThemesCorp.com with a new update entry:

Many fix and new options - 1.6.0.1

New release 1.6.0.1

- Add style property for position the title to block 1 on custom footer
- Add many style properties for customize the UserBox
- Add 4 new options in style properties (UserBox) for hide Avatar, Likes, Posts or/and points block
- Add Avatar Circle in membercard
- FontAwesome has been updated to latest version (4.7.0)
- Sticky Navigation for Internet Explorer fixed
- Fix error with helper to avatar for Last Posts block...

Read the rest of this update entry...
 
Help ?
How do I set the sidebar off first entry
Open sidebar Request dependent get
1LMpN5.png
 
Sidebar not closed
Sidebar all close
 

Attachments

  • 1.webp
    1.webp
    3.7 KB · Views: 3
  • 2.webp
    2.webp
    57.5 KB · Views: 2
  • 3.webp
    3.webp
    10.8 KB · Views: 2
Sidebar not closed
Sidebar all close
Ok, you want hide (disable) the sidebar ?

I didn't plan to disable the sidebar in my framework but you can add this in EXTRA.css template. (Attention, this will hide the sidebar in all addons using a sidebar, as Resources Manager, or Gallery Media etc ..)

Code:
.sidebar 
{
      display: none;
}
 
.mainContent 
{
      margin-right: 0;
}

If you want just hide the sidebar in forum list, use this:
Code:
.forum_list .sidebar 
{
       display: none;
}
 
.forum_list .mainContent 
{
        margin-right: 0;
}
 
Top Bottom