Local > FAQ - code tweaks
1. How to remove all footer links underline?
To remove the underlines from the links in your site footer, please add the following CSS code in Theme Settings > Custom CSS:
.footer-item__menu a, .footer-bottom a {
border-bottom: none ! IMPORTANT;
}
2. How to increase the number of icons in the "Icons list"?
For design reasons the "Icons list" in the theme is limited to 6 icons - a single block with 6 icons. To use multiple blocks with custom icons you can edit this in the main-product.liquid file here - https://share.getcloudapp.com/4gue2y0K.
3. How to increase the logo size beyond the included theme settings?
Please use this CSS code in the header custom CSS area to increase the logo image size to your own value:
.header__top.container--large {
height: 240px !important;
}
.site-header .logo img {
max-height: unset ! IMPORTANT;
width: 300px ! IMPORTANT;
}