To change the size of your logotype please follow these steps:
1. Go to your Touchize Commerce configure page in your PrestaShop backoffice
2. Go to the Settings page
3. Find the field called "Head HTML"
4. Copy & Paste the following CSS snippet into the field
<style>
.tz-brand__logo {
width: 190px;
}
@media (max-width: 769px)
.tz-brand__logo {
width: 185px;
}
@media (max-width: 767px)
.tz-brand__logo {
width: 135px;
}
@media (max-width: 479)
.tz-brand__logo {
width: 130px;
}
</style>
5. Edit the pixel sizes to your liking. E.g width: 99px; or width: 1.2em; if you want to use other units.
6. Save settings
