Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Functionality

Screens

Comment / Dev hint

An admin can choose custom background for a slide

Image Removed

https://creativestyle.atlassian.net/wiki/spaces/MGSDEV/pages/2316206316/Frontend+Customizations+-+examples#Background-for-image-teaser-slide

Possibility of special styling for a teaser.

On the frontend it is possible to prepare custom styling for some image teasers. The simplest modifications are:

  • decrease or remove bottom space below given teraser

  • remove spacing between slides in a teaser (this styling can be also introduced as a general rule)

  • change font size/color of texts

  • make images scaled on hover

In order to learn if more advanced customizations

https://creativestyle.atlassian.net/wiki/spaces/MGSDEV/pages/2316206316/Frontend+Customizations+-+examples#Add-a-special-variant-for-image-teaser

separate mobile/desktop logos

Code Block
<var name="mobile_logo_path">images/logo-mobile.svg</var> 
<!-- If path present separate logo (f.e. reduced) is displayed on mobile resolutions (below tablet). 
In the checkout there is always a standard logo. -->
<var name="mobile_logo_width"></var>
<var name="mobile_logo_height"></var>
Note

The feature is not tested in a live project

mobile back button

Code Block
<var name="mobile_back_button">true</var>
Browsing history back button for mobile devices

Back button is not visible on the homepage

Note

The feature is not tested in a live project

mobile header placed on the bottom

Code Block
<var name="mobile_is_bottom">true</var>
The default position of the header is on the top for mobile, 
but bottom position (true value) is also supported.
Note

The feature is not tested in a live project

...