Customization

Learn how to create your own style without changing the theme’s core files so you can take advantage of future updates.


How to include a typeface?

Add or change sApp typography with the following instructions.

  • Import the stylesheet @import url from "assets/css/style.css" to change Google Font.

    <!-- google fonts -->
    @import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap')
    
  • Open "assets/css/style.css" files and simply replace the font-family from <body> and <heading> tag with yours.

    body {
        font-family: 'Poppins', sans-serif;
      }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Poppins', sans-serif;
      }

How to change logo?

To change logo simply go to "assets/img/logo/logo.png". Then place your logo here.

<!-- Logo -->
<a class="navbar-brand" href="#">
    <img class="logo" src="assets/img/logo/logo.png" alt="">
</a>

Dynamic Contact Form

We have create dynamic contact form for you to easily start your business & contact with your clients. You just have to change your desired email address here "assets/php/mail.php."

// Set the recipient email address.
// FIXME: Update this to your desired email address.
$recipient = "[email protected]";