ThemeShaper Forums » Thematic

Customizing headers????

(3 posts)
  • Started 1 year ago by adavis3105
  • Latest reply from adavis3105
  • This topic is resolved
  1. adavis3105
    Member

    I have coded and styled a header that I want to use with a Child Theme I am developing within the Thematic framework...It looks and works as I want it to with regular HTML and CSS but when I try to move the code over to the Thematic child theme it all breaks, as in nothing shows up...so I guess my question is....

    How do I make the header completely custom?

    Posted 1 year ago #
  2. What exactly are you trying to do? You can use css to style everything. If you want to add a header image you can do something like this.
    Add this to functions.php

    // This adds header images
    function add_header_image() {

    ?>
    <img src="PATH TO YOUR IMAGE" />
    <?php
    }
    //lets add our new action to the child themes header
    add_action('thematic_header', 'add_header_image', 8);

    Posted 1 year ago #
  3. adavis3105
    Member

    What I am trying to do is take the space where the header sits and change it completely. Instead of one image there are four to six different images that are links (home , Facebook, Twitter, etc) what i am not understanding is how to get my HTML to show up in the header. The CSS is easy once I know where to put the HTML

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.