yanzar
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Themes and Templates
In reply to: [Twenty Sixteen] How to change color of mobile menu fontwow! Thx dude! That helped. I learn every day 🙂
Forum: Themes and Templates
In reply to: [Twenty Sixteen] How to change color of mobile menu fontzartech-consulting.com
Forum: Fixing WordPress
In reply to: Full width featured image on Twenty SixteenProblem solved. Had a bug in my css code.
Forum: Fixing WordPress
In reply to: Full width featured image on Twenty SixteenJan, sorry for referring to the apparently solved problem. But I have inserted your code into the child functions.php , but it does not work. What can be wrong?
<?php add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } function twentysixteen_post_thumbnail() { if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) { return; } if ( is_singular() ) : ?> <div class="post-thumbnail"> <?php the_post_thumbnail( 'full' ); ?> </div><!-- .post-thumbnail --> <?php else : ?> <a>" aria-hidden="true"> <?php the_post_thumbnail( 'full', array( 'alt' => the_title_attribute( 'echo=0' ) ) ); ?> </a> <?php endif; // End is_singular() } ?>site page: http://www.zartech-consulting.com/methods/
Viewing 4 replies - 1 through 4 (of 4 total)