How can to increase gap between page title and header?

How can to increase gap between page title and header? Here’s an example of a page: TROUVER UN MAGASIN – Cozy Mood Thank you!

@Patval please add this css to the very end of your base.css file and check

shopify admin->online store->themes->edit theme code->assets->base.css

#TopColumnContent {padding-top: 40px;}

Hii @Patval

Please add this CSS to the base.css file

Steps:

Go to:

  1. Online store → Themes → Edit code → asstes → base.css

  2. Serach for the .breadcrumb_title and apply the css below

.breadcrumb_title {
    margin: 0;
    text-transform: capitalize;
    margin-bottom: 0px;
    /* color: var(--color-base-accent-2); */
    color: #222222;
    line-height: 40.8px;
    padding-top: 25px;
}

Note: To increase the gap, simply increase the top padding.

Please add this code to theme.liquid file below <head>

{% if template.id == 142951383063 %}
<style>
.top-column-content .page-width {
    margin-top: -10px !important;
}
</style>
{% endif %}

Hi, @Patval
You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag

<style>
.title-breadcrumbs-container {
    padding: 150px 0 65px !important; 
}
</style>

Results:

Hope this helps! If yes then Please don’t forget hit Like and Mark it as solution!

Thanks everyone, and thanks suyash1, your solution worked!

Welcome, do let me know if you need any updates later.