# Customizing the edX course footer

**URL:** https://discuss.openedx.org/t/customizing-the-edx-course-footer/794
**Category:** Site Operations Help
**Created:** [November 4, 2019, 7:19am UTC](https://discuss.openedx.org/t/customizing-the-edx-course-footer/794 "2019-11-04T07:19:53Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Terry](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.openedx.org/terry/32/340_2.png) [@Terry](https://discuss.openedx.org/u/Terry)
#### Post date: [November 4, 2019, 7:19am UTC](https://discuss.openedx.org/t/customizing-the-edx-course-footer/794/1 "2019-11-04T07:19:53Z")

</div>

Hi guys,

I customized my footer.html in the lms/templates folder and its working fine,but when i try to view a course the footer is still unchanged.Is there another separate footer file for the courses which i have to change?

---

<div class="post-metadata">

### Author: ![mahyard](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.openedx.org/mahyard/32/54_2.png) [@mahyard](https://discuss.openedx.org/u/mahyard)
#### Post date: [November 4, 2019, 8:42am UTC](https://discuss.openedx.org/t/customizing-the-edx-course-footer/794/2 "2019-11-04T08:42:10Z")

</div>

Hi Terry,  
As I remember there is an “If” statement which separate 2 blocks of code in footer.html.  
One is used in homepage, the other is used in course-pages.  
If you tell us what you need to change exactly we may be able to help more.

---

<div class="post-metadata">

### Author: ![Terry](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.openedx.org/terry/32/340_2.png) [@Terry](https://discuss.openedx.org/u/Terry)
#### Post date: [November 4, 2019, 8:49am UTC](https://discuss.openedx.org/t/customizing-the-edx-course-footer/794/3 "2019-11-04T08:49:04Z")

</div>

@mahyard i have changed the color of the home page footer ,so i want it to be uniform with the courses-pages footer

---

<div class="post-metadata">

### Author: ![mahyard](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.openedx.org/mahyard/32/54_2.png) [@mahyard](https://discuss.openedx.org/u/mahyard)
#### Post date: [November 4, 2019, 9:57am UTC](https://discuss.openedx.org/t/customizing-the-edx-course-footer/794/4 "2019-11-04T09:57:30Z")

</div>

so what if you set this CSS block:

```css
.wrapper-footer {
    background-color: red;
}

```

also you can locate two `div.wrapper-footer` inside footer.html

---

<div class="post-metadata">

### Author: ![Terry](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.openedx.org/terry/32/340_2.png) [@Terry](https://discuss.openedx.org/u/Terry)
#### Post date: [November 4, 2019, 1:24pm UTC](https://discuss.openedx.org/t/customizing-the-edx-course-footer/794/5 "2019-11-04T13:24:19Z")

</div>

@mahyard thanks for helping out
