I have been trying to post something here but i keep getting errors, so im going to link the same thing to my post on wordpress.org and see if that works.
ThemeShaper Forums » Thematic
Adding a table into header
(3 posts)-
Posted 4 years ago #
-
Ok, it worked.
Strange.Sorry if this is an inconvenience but i would appreciate any help still.
Posted 4 years ago # -
Hey .. don't understand why you want to use a table .. this could be done with display:inline ..
Leave the we-are-awesome. as blog-title
The thing that needs to be changed would be the blog-description:
function remove_blogdescription() { remove_action('thematic_header','thematic_blogdescription',5); } add_action('init', 'remove_blogdescription'); function my_blogdescription() { ?> <div id="link1"> add your first link here </div> <div id="link2"> add your second link here </div> <div id="link3"> add your third link here </div> } add_action('thematic_header','my_blogdescription',5);Now you need to add #blog-title {display:inline} to your child theme's style.css .. plus #link1, #link2, #link3 .. all with display:inline and whatever is needed to style your links.
Cheers,
Chris
Posted 4 years ago #
Reply
You must log in to post.