I tried to add a custom header in beta 6. Here is my code.
<div id="special-header">
<a href="xxx"><img src="xxx.jpg"></a>
</div>
@media (min-width: 1024px) {
#special-header {
text-align: center;
}
}
@media (max-width: 1023px) {
#special-header {
display: none;
}
}
But after I add it, the position of "Quote" is a little far away from where it is supposed to be when I want to quote something in a thread.
I only know a little about html and css, so it may be my problem.
Btw, who can provide a good-looking example of custom header?
Besides, is it possible to make the custom header only show on the index page instead of every page?