Customize Shoporama admin
Guide to customizing colors, logo and appearance of Shoporama admin with custom CSS.
In Shoporama, you can customize the look of your admin backend with your own stylesheet. This is useful if you want to hide elements, change colors or highlight certain buttons.
To add your own stylesheet
- Click Company in the menu
- Click on "Custom stylesheet"
- Enter your CSS code in the text field
- Click Save
Examples of customizations
Here are some examples of what you can change:
Change the color of the left menu:
.drawer-light .drawer-menu .nav-link { color: #000 !important; }
Hide a specific element:
.element-class { display: none !important; }
Highlight a button with a different color:
.btn-custom { background-color: #e74c3c !important; border-color: #e74c3c !important; }
What can you change?
With CSS you can typically change:
- Colors - background, text, buttons
- Fonts - font type and size
- Visibility - hide elements you don't use
- Layout - widths, margins, padding
How to find the right CSS selector
To change a specific element, find its class or ID:
- Right-click on the element in your browser
- Select "Inspect element" (Inspect)
- Find the element's class (e.g.
class="nav-link") - Use the class as a CSS selector in your stylesheet
Tip for styling
Not everything can be styled with CSS. If you need something specific, feel free to write to us and we can assess the possibilities.
Do you need help? Ask in our help forum on Facebook.