Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #102880
    Raul
    Participant

    Hi:
    I have started by trying to move this <h2 class=”site-description”>’ . get_bloginfo( ‘description’ ) . ‘</h2> from custom-header.php to structure.php in row 82. But it does not work. How can it do it properly?

    Regards

    Raul

    #102892
    Mahesh
    Keymaster

    @vagabundo: Replace the following lines

    <div class="wrapper">
        <?php
            if ( '' == $options['disable_date'] ) {
                lucida_date();
            }
    
            lucida_header_top_menu();
        ?>
    </div><!-- .wrapper -->

    with:

    <div class="wrapper">
        <?php
            echo '<h2 class="site-description">' . get_bloginfo( 'description' ) . '</h2>';
    
            lucida_header_top_menu();
        ?>
    </div><!-- .wrapper -->

    Hope this is what you mean.

    Regards,
    Mahesh

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Lucida pro: switch position between date and site-description’ is closed to new replies.