Hello there,
The copyright text was just on the very bottom part of the sidebar. It was hidden since its color was white.
Please add this CSS code:
.copyright.top {
margin-top: 60px !important;
}
.copyright.bottom {
margin-bottom: 20px !important;
}
.copyright {
padding-top: 0 !important;
padding-bottom: 0 !important;
padding-left: 40px !important;
padding-right: 40px !important;
}
.copryright p {
font-family: "PT Sans",sans-serif;
font-style: normal;
font-weight: 400;
font-size: 7px;
letter-spacing: 0.083em;
}
.x-navbar-wrap p,
.copryright p,
.copyright.bottom a {
color: #999999 !important;
}
.copyright.bottom a:hover {
color: rgb(43,49,55) !important;
}
Then for the copyright text, kindly check this Javascript code in X > Theme Options > JS:
// Copyright Text
$('<div class="copyright top"><p>© Dex Hannon 2018: All rights reserved.</p></div><div class="copyright bottom"><p><a href="http://link-here/">Privacy & Cookies</a> | <a href="http://link-here/">Ts&Cs</a> | <a href="http://link-here/">Sitemap</a></p></div>').insertAfter("#x-nav-wrap-mobile");
Then change http://link-here/ to the url of each of your copyright menu item.
I’ve formatted your CSS code as you were having duplicating CSS declaration. Also, I’ve cleaned your Javascript code as you were having duplicate calls for document ready.
Hope this helps.