Upload your logo
Kreezalid offers by default a graphic theme allowing you to customize the design of your marketplace.
You can download your own logo on your marketplace. To do this, go to your dashboard on:
Theme > Customize > Genera > Upload your logo
For an optimal display on the theme Kindshare, choose a logo in landscape format whose height does not exceed 50px.
If the default logo size imposed by the Kindshare theme does not suit you, you can with custom CSS, increased the space dedicated to the logo and increase the display size of your logo on the site.
Here is a piece of code that should help you in this process. To increase to the desired size, vary the pixel size indicated at the line indicated with "here" in the code:
To apply the changes copy this code and paste it in:
Theme > Customize > Custom CSS
You can download your own logo on your marketplace. To do this, go to your dashboard on:
Theme > Customize > Genera > Upload your logo
For an optimal display on the theme Kindshare, choose a logo in landscape format whose height does not exceed 50px.
Do you want to increase the space dedicated to the logo on your marketplace?
If the default logo size imposed by the Kindshare theme does not suit you, you can with custom CSS, increased the space dedicated to the logo and increase the display size of your logo on the site.
Here is a piece of code that should help you in this process. To increase to the desired size, vary the pixel size indicated at the line indicated with "here" in the code:
@media (min-width: 992px) {
.navbar-brand > img {
height: 60px; /* <---- here */
margin: 0;
}
.container.clear_menu {
display: flex;
align-items: center;
}
.navbar-inverse .navbar-nav > li > a {
padding-top: 0;
padding-bottom: 0;
margin: 0;
}
.navbar-right {
margin-left: auto;
}
}
To apply the changes copy this code and paste it in:
Theme > Customize > Custom CSS
Updated on: 17/03/2023
Thank you!