Thesis theme users - how can i do this?

I'm not 100% sure which file to edit and I can't be bothered checking. But there should be a header.php or a .css file that you can edit to change that.
 
Assuming you have the most recent version . . .

The logo link is controlled by the header hook (Google is your friend - you gonna use Thesis, you need to know Thesis Hooks, well-covered on DIY)

The URL is controlled by the header hook. Using either the Thesis Open Hook plugin (a good place to start) or modify the custom_functions.php:


Code:
function custom_header() { ?>
  <p id="logo"><a href="new url"><?php bloginfo('name'); ?></a></p>
  <h1 id="tagline"><?php bloginfo('description'); ?></h1>
  <?php
}
remove_action('thesis_hook_header', 'thesis_default_header');
add_action('thesis_hook_header', 'custom_header');

The header graphic is set upon upload. To override THIS, go to the custom.css file and set:

Code:
.custom #header {
  background-image:url("whatever")
}

FYI - if you are going to use the plugin, you don't need the function wrapper
 
Last edited:
Back
Top