We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Footer color ending on background color | Forum

Topic location: Forum home » Development » Themes
Andy Power
Andy Power Jan 11 '17
Hi,
my footer color ends with the color I use for my background...
This looks so unusual, that I need to change it. I use simplified theme.
Is someone able to help?!
I tried this: https://developers.oxwall.com/forum/topic/41841
But it didn't work!


Attachments:
  Unbenannt4.PNG (6Kb)
Irena
Irena Jan 11 '17

Quote from Andy Power Hi,
my footer color ends with the color I use for my background...
This looks so unusual, that I need to change it. I use simplified theme.
Is someone able to help?!
I tried this: https://developers.oxwall.com/forum/topic/41841
But it didn't work!


Looks like you'll have to utilize css code in order to do that.

The element you'll have to target is .ow_footer .ow_canvas {
and then you can use background-color: to put the hex color you want.
If you use chrome use inspect element function to figure it out more indepth.

Darryl B Leader
Darryl B Jan 11 '17
.ow_footer is the element with the color setting. There is a gap between the footer, and the bottom of the page that is visible when a color is added. This can be corrected with padding on the element.

.ow_footer {
    background-color: your color;
    padding-bottom: 10px;
|