# Need help to custumize title header

**URL:** https://meta.discourse.org/t/need-help-to-custumize-title-header/89703
**Category:** Support
**Created:** [June 12, 2018, 5:32pm UTC](https://meta.discourse.org/t/need-help-to-custumize-title-header/89703 "2018-06-12T17:32:21Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Pravi](https://avatars.discourse-cdn.com/v4/letter/p/76d3ee/32.png) [@Pravi](https://meta.discourse.org/u/Pravi)
#### Post date: [June 12, 2018, 5:32pm UTC](https://meta.discourse.org/t/need-help-to-custumize-title-header/89703/1 "2018-06-12T17:32:21Z")

</div>

Hello Guys,  
I need some help to truncate certain portion of the header as if it was not there. I want to remove the area marked in red in the image. somehow cover the area marked in red, with black color as if it was not there.

 ![imageedit_4_4834058839](https://global.discourse-cdn.com/meta/original/3X/e/4/e454ac42f4167c08624542217541123f82e4a0da.png)

---

<div class="post-metadata">

### Author: ![Stranik](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/stranik/32/85638_2.png) [@Stranik](https://meta.discourse.org/u/Stranik)
#### Post date: [June 12, 2018, 6:00pm UTC](https://meta.discourse.org/t/need-help-to-custumize-title-header/89703/2 "2018-06-12T18:00:44Z")

</div>

Try adding this, pre-adjusted the height and padding.

```plaintext
.d-header {
    padding: 0;
    height: 4.01em; 
    background-color: #000;
}

.d-header .wrap {
    background-color: #fff;
}

```

---

<div class="post-metadata">

### Author: ![Pravi](https://avatars.discourse-cdn.com/v4/letter/p/76d3ee/32.png) [@Pravi](https://meta.discourse.org/u/Pravi)
#### Post date: [June 13, 2018, 6:14am UTC](https://meta.discourse.org/t/need-help-to-custumize-title-header/89703/3 "2018-06-13T06:14:22Z")

</div>

Thanks for the replay. When I added the css, every thing worked fine, except the box shadow. The box shadow went missing. So i made some modification but still the same, no box shadow for header. Need some help over here, @Stranik  
see my modified css:

```
  .d-header {
            padding: 0;
            height: 0.01em;
            background-color: #000;
            box-shadow: 0 2px 4px -1px rgba(0,0,0,0.25);
        }
  .d-header .wrap {
            background-color: #fff;
        }

```

 ![Capture](https://global.discourse-cdn.com/meta/original/3X/e/6/e627f1d06659e898cedde08d0516aaa6d8759f98.PNG)

---

<div class="post-metadata">

### Author: ![Stranik](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/stranik/32/85638_2.png) [@Stranik](https://meta.discourse.org/u/Stranik)
#### Post date: [June 13, 2018, 10:01am UTC](https://meta.discourse.org/t/need-help-to-custumize-title-header/89703/4 "2018-06-13T10:01:59Z")

</div>

I’m not a designer myself and don’t know css well, but it works for me.

 ![1](https://global.discourse-cdn.com/meta/original/3X/b/c/bcadde7fe88e01ee53918182322bc3dbd65ebe68.jpg)

```plaintext
.d-header {
    background-color: #000;
}

.d-header .wrap {
    background-color: #fff;
    max-width: 1144px;
    box-shadow: 0 2px 4px -1px rgba(0,0,0,0.25);
}

```

---

<div class="post-metadata">

### Author: ![Pravi](https://avatars.discourse-cdn.com/v4/letter/p/76d3ee/32.png) [@Pravi](https://meta.discourse.org/u/Pravi)
#### Post date: [June 13, 2018, 3:44pm UTC](https://meta.discourse.org/t/need-help-to-custumize-title-header/89703/5 "2018-06-13T15:44:20Z")

</div>

Thank You so much @Stranik. You solved my problem. See final modification,

```
.d-header {
    padding: 0;
    height: 0.01em;
    background-color: #323433; //#4e726a; //Header background Colour
    box-shadow: none;
    width: 100%;
    padding-top: 1px;
    height: 48px;
}

.d-header .wrap {
    background-color: #fff;
    max-width: 1144px;
    box-shadow: 0 2px 4px -1px rgba(0,0,0,0.25);
} 

```

 ![final](https://global.discourse-cdn.com/meta/original/3X/f/b/fbcdd00454417952d292429505519a2d8fa757d3.png)

Thank You

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [July 13, 2018, 3:44pm UTC](https://meta.discourse.org/t/need-help-to-custumize-title-header/89703/6 "2018-07-13T15:44:20Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
