I know there's a lot of posts about this stuff but i cant figure it out. I made a design to play with thematic and i'm loving it but php makes me hairless. What i need is a widget area in the header aligned right of the logo so i can put a banner. I know i will have to get my hands dirty on php but that's fine by me because i'm here to learn.
Thanks.
ThemeShaper Forums » Thematic
[closed]
Header widget
(2 posts)-
Posted 2 years ago #
-
check this post for header widgets:
http://themeshaper.com/forums/topic/widgets-in-the-header
but if you don't neeeed a true widget you can just do something like:
function header_banner(){ ?> <div id="banner"> <img src="some banner gif" /> <div> <?php } add_action('thematic_header','header_banner',8);then you'd need some css b/c the default css for branding is display: block and width = 100% and you'd need to make that more narrow so you could float your banner next to it.
Posted 2 years ago #
Topic Closed
This topic has been closed to new replies.