If it does not scroll as expected on iOS, try:
height: fit-content;
height: -webkit-fit-content;
height: -moz-fit-content;
overflow-y:scroll;
-webkit-overflow-scrolling: touch;
That’s all! Continue reading iOS fixed layers and scrolling
If it does not scroll as expected on iOS, try:
height: fit-content;
height: -webkit-fit-content;
height: -moz-fit-content;
overflow-y:scroll;
-webkit-overflow-scrolling: touch;
That’s all! Continue reading iOS fixed layers and scrolling
Prevent caching?
change the HEADERS!
Cache-Control: no-cache, no-store, must-revalidate Pragma: no-cache Expires: 0
GOOD INFO HERE:
https://stackoverflow.com/questions/49547/how-to-control-web-page-caching-across-all-browsers
Access to /app/etc/local.xml is not so desired since it contains your db login.
However IIS does ignore .htaccess, so you need to change the local web.config file. Continue reading Magento security on IIS
BRON: https://autoriteitpersoonsgegevens.nl/nl/onderwerpen/avg-nieuwe-europese-privacywetgeving/voorbereiding-op-de-avg
In 10 stappen voorbereid op de AVG
bron: https://css-tricks.com/examples/ShapesOfCSS/
Please not some of these do not work because of the default stylesheet ‘box-sizing’:
html { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*, *:before, *:after { -webkit-box-sizing: inherit; -moz-box-sizing: inherit; box-sizing: inherit; }
All of the below use only a single HTML element. Any kind of CSS goes, as long as it’s supported in at least one browser.
Just correct this using CSS.
The appearance property is used to display an element using a platform-native styling based on the users’ operating system’s theme.
.thing {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}