MyBB Community Forums

Full Version: Question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I want to ask if it is possible to add a "bar" in the footer for Christmas! =)

Example:
http://it.com.mk/

As you can see in the footer, it has a something like a bar and also they added their networks there.

I was wondering if this could be done in MyBB as well?

Thank you.
Yes. It's simple HTML and CSS. Just go to the footer template or something and put it there.
I've tried making it, but I couldn't. I'm still learning Web Languages, and I can't do really much although I know basic HTML.

Would you link me to existing code if possible, I'll try to edit it myself for my needs. Smile
CSS:

#christmasFooter {
	height: 90px;
	width: 100%;
	position: fixed;
	background: #000;
	color: #fff;
	bottom: 0;
	left: 0;
	z-index: 9999;
}

HTML:

<div id="christmasFooter">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</div>