The layout of all MyCashflow online stores is defined in HTML/CSS-based themes.
A theme is a collection of HTML and CSS files (as well as a Javascript code if necessary), which defines the content and layout of various pages and areas of an online store, as well as to some extent its interaction methods and logic of operation.
- Templates:
Templates are HTML documents that represent, for example, online store’s pages, their parts, or e-mail addresses.
- Interface tags:
Tags are commands that print online store’s contents and predefined user interface elements such as forms and navigation elements.
Tags can be used in HTML files that form theme templates and in content fields of the online store’s admin panel.
Learn more about the syntax of Interface tags and see a comprehensive list of all available tags.
- Theme configuration file:
The configuration file defines theme features, such as unified image sizes or the type of checkout in the online store.
- CSS styles:
Styles are used to define the layout of the store’s HTML elements.
You should always place CSS styles in separate files and not write them directly into the
<head>
section of the page. - JavaScript code:
With JavaScript, you can implement a wide range of features on the site, for example, AJAX functions that update the content of the shopping cart without reloading the page.