Perhaps some fancy social media icons with text would work fine… I am checking http://codecanyon.net also in hopes of finding something potential to work with the site…
Hi. I recently found the footers over at BootSnipp http://bootsnipp.com/tags/footer?page=1 and wanted to use one of these in my own Discourse forum. Bootsnipp separates HTML, CSS, Javascript - so it is easy to cut’n paste that code into the Customize sections of my Discourse.
I tried several but each one does not center on my Discourse. I thought there might be a conflict among generic tag names (like “row” or “container” - so I tried adding “footer-” to the front, but that did not help.)
There seem to be at least 2 issues:
the centering doesn’t seem to work
the CSS columns effect also does not work.
Is there a setting I can change in my Discourse Settings area to allow these effects to happen in the footer? Should I be using certain tag names?
I hope to add links to websites related to my forum down there. I may also try adding a banner zone like I used to have in our pre-Discourse days.
Instrucciones actualizadas para encontrar esto en 2020
Menú hamburguesa > Configuración > Personalizar > [Seleccionar un tema] > Botón “Editar CSS/HTML” > Pie de página
Ingresa tu código HTML personalizado en el cuadro y haz clic en “Guardar”.
Repite el proceso para cada tema que los usuarios puedan seleccionar.
Una sección de derechos de autor decente y básica
Comencé con el siguiente código HTML para mi pie de página de derechos de autor, que pensé funcionaba bien tanto para el tema claro predeterminado como para el oscuro:
Por supuesto, no quiero tener que cambiar el año en el pie de página cada 12 meses, así que lo he mejorado para incluir este código HTML en el pie de página:
Y este código en la sección <body> (probablemente no sea el código ideal, pero soy nuevo en la modificación de Discourse):
<script>
function setCopyrightYear() {
var el = document.getElementById("footer-copyright-current-year");
if (el) {
el.innerHTML = new Date().getFullYear();
} else {
setTimeout(setCopyrightYear, 100);
}
}
document.addEventListener("DOMContentLoaded", setCopyrightYear);
</script>
De nuevo, necesitas copiar y pegarlo en cada tema donde quieras que aparezca.