Featured slider text box overlaps menu items

Aigars, my good friend. I’ve got a few more issues for you :slight_smile: … firstly, when you go to my site the featured slider text covers up part of my menu. How would I go about either (a) making the text box of the featured slider smaller or (b) moving the featured slider or menu up/down to allow for the default slider text to fit without overlapping. Secondly, I just updated to your new theme and placed a new header image (the good vibes lounge couch) and I was wondering how I could put an anchor around it so visitors could click the couch and be re-directed back to the homepage. As always, your help is very much appreciated!

To fix problems with featured slider add the following to the Theme Options – Other – Custom CSS:

.featured-text {
	bottom: 0;
}
  • Go to header-extensions.php located in theme folder → library → structure and find line 233.
  • Now replace code from the following example:

Replace:

<img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">

With:

<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
				<img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"></a>