Comments 2Sebastiaan started the conversationMarch 9, 2017 at 3:39pmHiIs it possible to have a one logo on the pre-loader and a different logo in the menu bar? so two different logos...Cheers,Sebastiaan 850Jelly repliedMarch 10, 2017 at 12:34pmHi, Yes, it's possible, but you will need hard code to it, do you familiar with WordPress Codex? You can open header.php file and see this code: <div class="ip-logo"> <img src="<?php echo esc_url($storm_jellythemes['logo']['url']); ?>" alt="<?php echo strip_tags($storm_jellythemes['blogname']); ?>"> </div> The change it to below: <div class="ip-logo"> <img src="<?php echo get_template_directory_uri(); ?>/images/your-logo-name-here.png" alt="<?php echo strip_tags($storm_jellythemes['blogname']); ?>"> </div> You need put your logo in images folder in storm-jellythemes folder.Best Regards,Jelly Team1 Like Sign in to reply ...
Hi
Is it possible to have a one logo on the pre-loader and a different logo in the menu bar? so two different logos...
Cheers,
Sebastiaan
Hi,
Yes, it's possible, but you will need hard code to it, do you familiar with WordPress Codex? You can open header.php file and see this code:
The change it to below:
You need put your logo in images folder in storm-jellythemes folder.
Best Regards,
Jelly Team