Hi,
The code responsible for the logo may be found in Fest/layouts/header.php file:
- Code: Select all
<?php if(get_option($tpl->name . "_branding_logo_type", 'css') != 'none') : ?>
<h1>
<a href="<?php echo home_url(); ?>" class="<?php echo get_option($tpl->name . "_branding_logo_type", 'css'); ?>Logo"><?php gk_blog_logo(); ?></a>
</h1>
<?php endif; ?>
and below is the line responsible for the register now button:
- Code: Select all
<a href="<?php echo get_option($tpl->name . "_register_link", '#'); ?>"><?php _e('Register Now', GKTPLNAME); ?></a>
You can replace this line with <img .. > code with your second logo image..