Don't you find this?

Don't you find that there are no scroll bar in a small browser. Just look at the PNG file in the following.

 

This is different from a normal website.

捕获.PNG · 416.1K · 203 views
Quote · 13 Jan 2016

To get the scroll bar do this.

Edit base/css/general.css

Look for this

div.sys_root {
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;

    padding-bottom: 204px;

    overflow: auto;
}

Remove the line overflow: auto; so your left with this.

div.sys_root {
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;

    padding-bottom: 204px;

}

You will need to clear the dolphin cache after editing that css file.

https://www.deanbassett.com
Quote · 13 Jan 2016

 Thank you very much,deano. I didn't learn CSS knowledge.

To get the scroll bar do this.

Edit base/css/general.css

Look for this

div.sys_root {
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;

    padding-bottom: 204px;

    overflow: auto;
}

Remove the line overflow: auto; so your left with this.

div.sys_root {
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;

    padding-bottom: 204px;

}

You will need to clear the dolphin cache after editing that css file.

 

Quote · 13 Jan 2016
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.