Is it possible to ad a div area above the access div. I've been able to add it below the access area with the thematic_belowheader. But I can't seem to get one above the access within the header div.
ThemeShaper Forums » Thematic
Adding a div area above the access div
(3 posts)-
Posted 12 years ago #
-
you have to use the numbered positions in thematic_header. i never know what they are officially called, but there are 4 that are left open: a spot before and after the blog title, after the blog description and before the access div.
http://bluemandala.com/thematic/thematic-structure.html
so for example to add something a div before the #access div
function add_stuff() { ?> <div id="new"> Bacon </div> <? } add_action('thematic_header','add_stuff',8);
Posted 12 years ago # -
Sweet! I was looking at that. It's in the theme hooks sections but wasn't sure how the numbered positions worked. You rock. I hope it works. It's going to save me tons of time.
Posted 12 years ago #
Reply
You must log in to post.