aml3ht
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Logo] Logo not displaying properlyIndeed I have chosen the 2nd suggested header.
I can try to edit the header file with my boyfriend who’s a developer so I don’t make mistakes and if it doesn’t work I will change it back.Forum: Plugins
In reply to: [Easy Logo] Logo not displaying properlyHi,
Thanks for your answer. I had disabled the plugin as it was not displaying properly, sorry. It’s now back on. Unfortunately I still can’t make it work and the hover effect I added doesn’t seem to work either 🙁
I’m using the Mira theme and here is my header.php code :
<?php
/**
* @package WordPress
* @subpackage Mira
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head><meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<?php wp_head(); ?>
</head>
<?php $mt_header_display = ot_get_option( ‘mt_header_display’);
switch ($mt_header_display) {
case ‘mt_header1’:
get_template_part(‘include/assets/section’, ‘header1’);
break;case ‘mt_header2’:
get_template_part(‘include/assets/section’, ‘header2’);
break;case ‘mt_header3’:
get_template_part(‘include/assets/section’, ‘header3’);
break;default:
get_template_part(‘include/assets/section’, ‘header1’);
}
?>
<?php show_easylogo(); ?>