Dear Sharon,
you can set your header logo in “Appearance > Theme Options > Header > Logo URL”.
If you would like to display the logo together with the site title, you will need to edit the “header.php” template. Please search here for the following code:
<?php if ( $winterdream_options_db['winterdream_logo_url'] == '' ) { ?>
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></p>
<?php } else { ?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img class="header-logo" src="<?php echo esc_url($winterdream_options_db['winterdream_logo_url']); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a>
<?php } ?>
and modify it in this way:
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></p>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img class="header-logo" src="<?php echo esc_url($winterdream_options_db['winterdream_logo_url']); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a>
Best regards,
Tomas Toman
Thanks, Now how about changing the menu to go across the top rather than the drop down menu.
By default, the menu contains automatically generated links to all your pages. To edit it, please go to “Appearance > Menus” and create here your custom menu (see this guide).
Best regards,
Tomas Toman