This topic has 10 replies, 2 voices, and was last updated 1 years, 3 months ago ago by Rose Tyler
hey
how can i make smaller the sub catagories and desgin them?
Hello, Tal,
Please provide URL of page from your screenshot.
Kind Regards,
8theme team
Hello, Tal,
Thank you for your response.
Please describe in more detail the desired result you want to get. Right now your request is a bit unclear to us.
Kind Regards,
8theme team
hey
how can i change the size of the sub catagories? its so big on mobile i want to make it much smaller.
like here:
Hello, Tal,
Please try to use the next custom CSS code:
.category-grid>a img {
padding: 50px;
}
Kind Regards,
8theme team
its made the img smaller but the border still big
how to make it same small size?
Hello, Tal,
In this case, please change the code to:
@media only screen and (max-width: 768px) {
.products-bordered-layout.with-ajax .ajax-content>.category-grid, .products-bordered-layout:not(.with-ajax)>.category-grid {
border: none;
padding: 2vw;
margin: 0 !important;
}
.products-bordered-layout.with-ajax .ajax-content>.category-grid > a, .products-bordered-layout:not(.with-ajax)>.category-grid > a {
border: 1px solid var(--et_border-color);
}
}
Kind Regards,
8theme team
hey
how to remove space between them?
all my point was to make it smaller to save place.
Hello, Tal,
Thank you for your response.
If you want to get 4 items per row, please change the previous code to:
@media only screen and (max-width: 768px) {
.products-bordered-layout.with-ajax .ajax-content>.category-grid, .products-bordered-layout:not(.with-ajax)>.category-grid {
border: none;
margin: 0 !important;
}
.products-bordered-layout.with-ajax .ajax-content>.category-grid > a, .products-bordered-layout:not(.with-ajax)>.category-grid > a {
border: 1px solid var(--et_border-color);
}
.products-grid .product-category {
width: 25% !important;
}
}
If you have any additional questions or concerns, please do not hesitate to reach out to us. Our support team is always available to assist you.
Kind Regards,
8theme team
You must be logged in to reply to this topic.Log in/Sign up