Custom Theme Creation
EasyOrders allows users to create custom themes for their stores by selecting a base theme, making CSS changes, and uploading the customized CSS file to style their store as they desire.
1. Choosing a Skeleton Theme
Start by selecting a base theme from the available themes. This base theme will serve as the foundation for your custom design.
Available themes can be found here.
2. Customizing with CSS
After selecting your skeleton theme, you can override the default styles by adding custom CSS. This CSS will allow you to adjust the visual elements such as colors, fonts, margins, etc.
How to Write Custom CSS
- Create a
.css
file and define your styles. - Use the existing HTML structure and apply your custom classes or override default theme styles.
Example:
/* Example custom styles */
body {
background-color: #f4f4f4;
}
h1 {
color: #333;
font-family: Arial, sans-serif;
}
.product-card {
border: 1px solid #ddd;
padding: 10px;
}
3. Uploading the CSS File
Once you have created your custom CSS file, you can upload it to EasyOrders to apply the styles to your store.
Steps to Upload:
- Navigate to the https://seller.easy-orders.net/#/upload-assets in your store's dashboard panel.
- Upload the
.css
file you've created. - Once uploaded, you will receive a link to the CSS file, copy it.
Example URL after upload: https://files.easy-orders.net/17295967886114574.css
- Go to https://seller.easy-orders.net/#/header-code then paste and save the link in the following formate
<link
rel="stylesheet"
type="text/css"
href="https://files.easy-orders.net/17295967886114574.css"
/>
replace the link with your uploaded css file link