Snader86
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [matrix] No scrolling in Chrome MobileI’m using the Chrome webbrowser on a LG G3, but I can’t scroll Amy further than on the image below.
Forum: Themes and Templates
In reply to: [matrix] No scrolling in Chrome MobileI have the exact same problem. The website works fine on Chrome Desktop and iPad, but on Chrome Mobile there is no scrolling possible.
I’m using the latest version.
I’m also having problems.
WordPress 4.3.1
Plugin: 4.6The welcome email is not being send, and when using the request password option, I get an e-mail displaying [reset_pass_url] instead of the actual URL.
Forum: Themes and Templates
In reply to: [First] Header image not. workingIf you open the header.php the following code is used to display the header image:
<?php if ( is_home() && get_header_image() ) : ?> <div id="header-image" class="header-image"> <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt=""> </div><!-- #header-image --> <?php elseif ( is_page() && has_post_thumbnail() ) : ?> <div id="header-image" class="header-image"> <?php the_post_thumbnail( 'first-page-thumbnail' ); ?> </div><!-- #header-image --> <?php endif; ?>
If you remove this code, and replace it with the following you can use your own image. The only downside is that you can’t use the theme customizer to change the image.
<div id="header-image" class="header-image"> <img src="https://www.yoursite.com/image.jpg" height="200" width="1220"> </div>
You can change the URL, height and width of the image accordingly.
Forum: Themes and Templates
In reply to: [First] Header image not. workingThe TwentyeEleven theme is working just fine. I’ve managed to “solve” the problem, by changing the header image in the header.php instead of using the theme customizer.
It’s not the best solution, but it works.