Food Tiger
  • Introduction
  • Installation
    • Installation on Shared Hosting
    • Updating - Shared hosting
    • Run local
  • Define Basics
    • Database
    • Mail server
    • Localization and Time format
    • Pricing Plans
    • Payments
    • Stripe Gateway
    • Paystack Gateway
    • Google API
    • Google Analytics
    • Google authentication
    • Facebook authentication
    • One Signal push notifications
    • Twilio SMS notifications
  • Usage
    • Getting Started
    • Register as an admin
    • Multilingual menu
    • Set up your site
    • Restaurant subdomain
    • Single restaurant
    • Translations
    • Custom CSS
    • Import from CSV
    • Custom fields on order
    • Project plugins
  • Plugins
    • How to install plugin
    • ShareThis
    • Cookie Consent
    • Thermal Printer Module
    • WebHooks
  • API
    • Client API
    • Driver API
  • Changelog
    • Changelog
    • FAQ
Powered by GitBook
On this page

Was this helpful?

  1. Usage

Custom CSS

The preferd way to change the CSS is to inspect the elemtn, find the class and overwrite its css styling via the Admin->Settings->CSS & JS tab. There you can define your own CSS styling overwrite.

For example, let's change the frontpage initial blue theme to red. This is the CSS you need.

.bg-primary  {
    background-color: #ff0000 !important;
}

.headroom--not-top.navbar-theme-primary {
    background-color: #ff0000 !important;
}

.btn-primary {
    background-color: #ff0000  !important;
}

And you can do this for every ID or class inside the html.

PreviousTranslationsNextImport from CSV

Last updated 4 years ago

Was this helpful?