inherit
207574
0
Jul 18, 2016 17:53:18 GMT -8
bellsprout
222
April 2014
bellsprout
|
Post by bellsprout on May 8, 2014 15:31:23 GMT -8
On my forum, sprouttower.boards.netI want a header that's above all of the boards that contains event info. Like, "This is the new shop!" or, "Adoption event!" Is there a way to do that?
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on May 10, 2014 20:14:45 GMT -8
On my forum, sprouttower.boards.netI want a header that's above all of the boards that contains event info. Like, "This is the new shop!" or, "Adoption event!" Is there a way to do that? If you want it on all themes and if you have a lot of themes, you could just add something like this to your global or main header: <style> #my_header_info{ height:30px; width:100%; margin-right:auto; margin-left:auto; background-color:#ffffff; margin-bottom:4px; padding:4px; } </style>
<div id="my_header_info">Something here</div>
<script type="text/javascript"> $("document").ready(function(){ $("#my_header_info").insertAfter("#news"); }); </script>
You could also just put that right below this part.... $[footer] </div> >>>>the above code goes here<<< .....in your forum wrapper template and it should be o.k. OR at the very bottom of your home template if you just want it to show on the main page only.
|
|