Akomi Portal‎ > ‎Akomi Admin Info‎ > ‎Reference Guide‎ > ‎

Akomi Custom Styles (CSS)

The default Light and Dark Akomi themes can be supplemented with customizations that will persist through a standard upgrade. To add custom CSS elements, add the following file and add your customizations to it:
  • /var/www/akomi/www/style/custom_style.css
For example, if you want to hide comments and markers from the Media Page, add the following lines:

#corporate-view-divider {
display: none;
}
#markers-container {
display: none;
}
#media-info-comments {
display: none;
}

To set custom font colors:

/* font colors */
.item-show,.item-show .highlightWord {
color: #4b7f8d;
}
a {
color: #18586b;
text-decoration: none;
}

h2 {
color: #18586b;
}


Comments