Tagged: , ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #704774
    #705149

    Hey masplaconsulting,

    I’m not sure I understand what you mean by that, do you want the logo inside an h1 tag?

    Best regards,
    Rikard

    #705254

    If that is.

    #705678

    Hi,

    Try to add this code at the bottom of functions.php (located in Appearance > Editor) or you can edit this via ftp or cpanel:

    function wrap_logo(){
    ?>
      <script>
        jQuery(window).load(function(){
          	jQuery('#header .logo a').wrap(function() {
    		  return '<h1></h1>';
    		});
    
        });
      </script>
    <?php
    }
    add_action('wp_footer', 'wrap_logo');

    You may need to add this css code in Quick CSS (located in Enfold > General Styling):

    #header .logo > h1 {
      margin-bottom: 0 !important;
    }

    Let us know if it works :)

    Best regards,
    Nikko

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.