Okay
  Public Ticket #1949744
Website footer
Closed

Comments

  • Doug Gilliatt started the conversation

    At one time I removed the footer on the website but would like to add it back in. How do I do that? Thanks.

  •  850
    Jelly replied

    Hello,

    It looks like you've added a custom style that hid it https://tppr.me/6pLbu. Please add this CSS code to Appearance -> Customize > Additional CSS:

    .footer-site { display: block !important; }

    Best Regards,
    Jelly Team

  • Doug Gilliatt replied

    Thanks! So how do I change the color on the background? Also the colors on the main navigation menu items which is currently light blue when active on rollover. 

  •  850
    Jelly replied

    Please use this code:

    body {
      background-color: #ffffff;
    }
    .overlay {
        background: background: rgba(255, 255, 255, 0.97);
    }
    .overlay ul li a:hover, .overlay ul li a:focus {
        color: #70c8d4;
    }

    1. Whole website background.

    2. Menu background.

    3. Menu item color on hover.

    Best Regards,
    Jelly Team