Contents

Discover what’s included in RoyalAds.

Precompiled RoyalAds

Once downloaded, unzip the compressed folder and you’ll see something like this:

royalads/
├── assets/
│   ├── css/
│   │   ├── style.css
│   ├── images/
│   │   ├── favicon.png
│   │   ├── cards/
│   │   ├── cars/
│   │   ├── companies/
│   │   ├── dealers/
│   │   ├── ...
│   ├── js/
│   │   ├── gmap3.js
│   │   ├── infobox.js
│   │   ├── overlappingmarkerspiderfier.js
│   │   ├── populate-map.js
│   │   ├── theme.js
│   ├── vendor/
│   │   ├── animate.css/
│   │   │   ├── animate.min.css
│   │   ├── aos/
│   │   │   ├── aos.js
│   │   │   ├── aos.css
│   │   ├── bootstrap/
│   │   │   ├── bootstrap.min.js
│   │   │   ├── bootstrap.min.css
│   │   ├── chosen-select/
│   │   │   ├── css/
│   │   │   │   ├── chosen-sprite.png
│   │   │   │   ├── [email protected]
│   │   │   │   ├── chosen.min.css
│   │   │   ├── js/
│   │   │   │   ├── chosen.jquery.min.js
├── docs/
│   ├── index.html
│   ├── contents.html
│   ├── ...
│   ├── assets/
│   │   ├── vendor/
│   │   │   ├── aos/
│   │   │   │   ├── prism.css
│   │   │   │   ├── prism.js
│   ├── components/
│   │   ├── alerts.html
│   │   ├── avatars.html
│   │   ├── badge.html
│   │   ...
│   ├── plugins/
│   │   ├── aos.html
│   │   └── fancybox.html
│   ├── utilities/
│   │   ├── borders.html
│   │   ├── colors.html
│   │   ├── display.html
│   │   ...
├── html/
│   ├── automotive/
│   │   ├── index.html
│   ├── ├── ...
│   ├── real-estate/
│   │   ├── index.html
│   ├── ├── ...
└── ...

This is the most basic form of RoyalAds: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (theme.css and theme.js), as well as compiled and minified CSS and JS (theme.min.css and theme.min.js).

Top