Category Title Banner Size? Texts in Categories
-
Hello,
1. How could I change the size of the banner of the separate categories? For example, for one category I want it default or larger, for others I want it small.
2. Is it possible to have a custom size for the category banner?
3. How could I add and make visible custom texts for category pages?
Hello,
01. Try to use the theme preset feature of our theme for this and change the theme settings.
Here is our documentation on how to use theme presets: https://xtemos.com/docs-topic/theme-settings-presets/
02. Yes, it is possible to set a custom size for the category page title in WoodMart using custom CSS.
If you share the page URL, I can check it and provide the exact CSS code for your case.
03. You can add custom text to category pages in WoodMart using two options:
Description this is the default WooCommerce field
Extra Description: additional field provided by the theme
Navigate to Products > Categories > Edit category and add the text.
Best Regards
Hello,
Try to add the following CSS code in Theme Settings > Custom CSS:
.wd-page-title {
height: 350px; /* your desired height */
}
.wd-page-title-bg {
height: 100%;
}
.wd-page-title-bg img {
width: 100%;
height: 100%;
object-fit: cover;
}
Best Regards