Appskull is very brandable. You can set custom logos, name, CSS styles and etc...
Change userend logo.
To change userend logo, simply replace logo.svg
file in the [app_root]/assets/themes/nuda/common/userend/img
directory.
Change adminend logo.
To change adminend logo, simply replace navbar_logo.svg
file in the [app_root]/assets/themes/nuda/common/adminend/img
directory. Recommended height and width of this file is 30px.
.svg
type of image/logo, you can use many different types of softwares. but most of the people use Adobe Illustrator software. so if you are using this software we can give you simple guild about how to convert your already existing .ai image/logo to .svg image/logo. please follow bellow steps.
Open your .ai file in Adobe Illustrator software.
Choose Save As
option in File
menu.
Choose SVG
option in Save As
window.
Choose these options in SVG Options
window.
You may need to change default app name
and app slogan
on the Appskull adminend.
You can easily change default Appskull name and slogan on the system settings -> app module page.
http://[base_url]/system/settings/app
You can customize Appskull's both the userend and adminend very easily with your own custom CSS styles.
Appskull have 3 different stylesheets for your customizations.
Stylesheet for userend only.
Use this stylesheet only to customize userend only. You can find this (app.css) stylesheet under [app_root]/app/assets/themes/nuda/common/userend/css
directory.
Stylesheet for adminend only.
Use this stylesheet only to customize adminend only. You can find this (app.css) stylesheet under [app_root]/app/assets/themes/nuda/common/adminend/css
directory.
Stylesheet for both the userend and adminend.
If you have common CSS styles for both the userend and adminend, then put those styles in this stylesheet. You can find this (app.css) stylesheet under [app_root]/app/assets/themes/nuda/common/common/css
directory.
Examples:
Change userend background color.
Stylesheet: [app_root]/app/assets/themes/nuda/common/userend/css
body {
background-color: #1c00e0bd;
}
Change app frame background color on the adminend.
Stylesheet: [app_root]/app/assets/themes/nuda/common/adminend/css
._app_frame {
background-color: #673ab7 !important;
}