[Theme: Simple Catch] Moving site-title downwards
-
Hi there,
I always try to resolve any problems myself and so far it worked. But rigth now I have a major problem with an issue that should be easy as pie.
I want to add a margin-top or break to the site-title so that it gets more distance from the top of the page. I am able to insert a margin, but then also the Logo is moved downwards. I need the Logo to stay at its current position and only the site-title to move down by one break or a margin-top. (the site is https://www.massage-mit-oel.de )
With firebug I found out a simple break in the Span-Line
<span>Massage mit ?l</span>
would be enough. But when editing the simplecatch_funcions.php it doesn′t work. Also when I change the span to a div, firebug shows me it is still a span.
This is where I tried to work in simplecatch_functions.php:$simplecatch_headerdetails = '<div class="logo-wrap">'; if( empty( $options[ 'remove_header_logo' ] ) || empty( $options[ 'remove_site_title' ] ) ) { $simplecatch_headerdetails .= '<h1 id="site-title">'.'<a href="'.esc_url( home_url( '/' ) ).'" title="'.esc_attr( get_bloginfo( 'name', 'display' ) ).'">'; if( empty( $options[ 'remove_header_logo' ] ) ) { if ( !empty( $options[ 'featured_logo_header' ] ) ): $simplecatch_headerdetails .= '<img src="'.esc_url( $options['featured_logo_header'] ).'" alt="'.get_bloginfo( 'name' ).'" />'; else: // if empty featured_logo_header on theme options, display default logo $simplecatch_headerdetails .='<img src="'. get_template_directory_uri().'/images/logo.png" alt="logo" />'; endif; } if ( empty( $options[ 'remove_site_title' ] ) ) { <strong>$simplecatch_headerdetails .='<span>'.esc_attr( get_bloginfo( 'name', 'display' ) ).'</span>'; </strong> } $simplecatch_headerdetails .= '</a></h1>'; } if( empty( $options[ 'remove_site_description' ] ) ) { $simplecatch_headerdetails .= '<h2 id="site-description">'.esc_attr( get_bloginfo( 'description' ) ).'</h2>'; } $simplecatch_headerdetails .= '</div><!-- .logo-wrap -->';
Can you tell me which is the correct file to edit? Or a specific code?
(I also tried to adjust per CSS with no effect)Thank you very very much.
- The topic ‘[Theme: Simple Catch] Moving site-title downwards’ is closed to new replies.