Would anyone be able to help please. How do I reduce the space between the header and description please?
Hello @everydayot
Our team is ready to help you.
Please share your website address and access password (if necessary) so that we can check and assist you.
Hi,
Need to modify CSS (adjust the margin or padding properties that control the spacing)
CSS example
.header {
margin-bottom: 10px; /* or reduce padding if it's padding-related */
}
.description {
margin-top: 10px; /* Adjust as needed */
}
If you can’t find the exact section for modification then you can add custom css
Example
.header {
margin-bottom: 10px; /* Reduces space between header and description */
}
.description {
margin-top: 0; /* Further reduce space */
}
