Page content not showing on mobile devices

user3283090

I am using a responsive Wordpress theme, Nexus, and I am having issues when viewing the website from mobile devices. The post content is fine when viewing the website from a desktop but the main content disappears (as though font-color becomes transparent or is changed to white) but the space for the content is still present. This has been tested on Safari and Chrome for iOS7 (iPhone and iPad).

I have tried disabling any plugins that may be the cause of this problem but to no avail. The issue cannot be replicated when resizing the browser on a desktop, the site responds and adapts as it should without loosing any content, so I assume it may be something to do with the meta tag in use, but the header and footer content shows fine. Could it be something to do with the page.php ( the 'default template' )?

The meta tag currently in use is:

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">

The website can be viewed at www.cafestylespeedtraining.net.

This is the page.php file:

<?php
$featured_image = false;

if ( '' != get_the_post_thumbnail() ) :
    $featured_image = true;
?>
<div class="post-thumbnail">
    <div class="container">
        <h1 class="post-heading"><?php the_title(); ?></h1>
    </div> <!-- .container -->
</div> <!-- .post-thumbnail -->
<?php endif; ?>

<div class="page-wrap container">
    <div id="main-content">
        <div class="main-content-wrap clearfix">
            <div id="content">
                <?php get_template_part( 'includes/breadcrumbs', 'index' ); ?>

                <div id="left-area">

                <?php while ( have_posts() ) : the_post(); ?>

                    <article class="entry-content clearfix">
                    <?php if ( ! $featured_image ) : ?>
                        <h1 class="main-title"><?php the_title(); ?></h1>
                    <?php endif; ?>
                    <?php
                        the_content();

                        wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'Nexus' ), 'after' => '</div>' ) );
                    ?>
                    </article> <!-- .entry -->

                    <?php
                        if ( comments_open() && 'on' == et_get_option( 'nexus_show_pagescomments', 'false' ) )
                            comments_template( '', true );
                    ?>

                <?php endwhile; ?>

                </div>  <!-- end #left-area -->
            </div> <!-- #content -->

            <?php get_sidebar(); ?>
        </div> <!-- .main-content-wrap -->

        <?php get_template_part( 'includes/footer-banner', 'page' ); ?>
    </div> <!-- #main-content -->

    <?php get_footer(); ?>

Any help would be greatly appreciated. If you need any other files, let me know and I will paste them.

Akhilesh

It is simple CSS problem.

The bugging element is:

<h4 class="widgettitle">Book your Cafe Style Facilitator’s Boot Camp</h4>

You can check it by giving the element block the following style:

display: none;

Also you can emulate mobile behavior in Chrome Browser using

F12 -> settings -> overrides -> emulate

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Bootstrap "mobile" menu not showing on mobile devices

From Dev

page is not scrolling vertically in mobile devices

From Dev

Twitter Bootsrap - Dropdown Menu not showing on mobile devices

From Dev

Showing a div only on mobile devices using jQuery

From Dev

Bootstrap Header and Footer not showing links on mobile devices

From Dev

My navbar isn't showing on mobile devices

From Dev

JavaScript clock not showing current time on mobile devices

From Dev

CSS hover effect on ajax content and mobile devices

From Dev

How to make flash content to work on mobile devices?

From Dev

How to redirect a single page for mobile devices?

From Dev

Viewing fixed page layout on mobile devices

From Dev

Page extends beyond the viewport on mobile devices

From Dev

Page not full width on certain mobile devices

From Dev

Backend content of page is not showing in wordpress

From Dev

Login page content not showing in AngularJS

From Dev

IE conditional content showing up on chrome mobile

From Dev

Hiding button on desktop browser and showing only on mobile devices

From Dev

My fixed backgrounds arent showing properly on mobile devices

From Dev

Mobile devices (iPhone, iPad) aren't showing the correct CSS for a button

From Dev

Why Youtube videos in FancyBox are not showing when used on mobile devices?

From Dev

Jquery mobile app header showing in full page in some mobile phones

From Dev

How to automatically hide carousel of a web page on mobile devices?

From Dev

I cant see my web page from mobile devices

From Dev

Redirect only mobile devices to a landing page. But only once

From Dev

Detecting splash page PHP file from non-mobile devices

From Dev

Start showing new php page in middle of the content

From Dev

google map not showing in page by ajax loaded content

From Dev

Master page content not showing up in child

From Dev

Master page content not showing up in child

Related Related

  1. 1

    Bootstrap "mobile" menu not showing on mobile devices

  2. 2

    page is not scrolling vertically in mobile devices

  3. 3

    Twitter Bootsrap - Dropdown Menu not showing on mobile devices

  4. 4

    Showing a div only on mobile devices using jQuery

  5. 5

    Bootstrap Header and Footer not showing links on mobile devices

  6. 6

    My navbar isn't showing on mobile devices

  7. 7

    JavaScript clock not showing current time on mobile devices

  8. 8

    CSS hover effect on ajax content and mobile devices

  9. 9

    How to make flash content to work on mobile devices?

  10. 10

    How to redirect a single page for mobile devices?

  11. 11

    Viewing fixed page layout on mobile devices

  12. 12

    Page extends beyond the viewport on mobile devices

  13. 13

    Page not full width on certain mobile devices

  14. 14

    Backend content of page is not showing in wordpress

  15. 15

    Login page content not showing in AngularJS

  16. 16

    IE conditional content showing up on chrome mobile

  17. 17

    Hiding button on desktop browser and showing only on mobile devices

  18. 18

    My fixed backgrounds arent showing properly on mobile devices

  19. 19

    Mobile devices (iPhone, iPad) aren't showing the correct CSS for a button

  20. 20

    Why Youtube videos in FancyBox are not showing when used on mobile devices?

  21. 21

    Jquery mobile app header showing in full page in some mobile phones

  22. 22

    How to automatically hide carousel of a web page on mobile devices?

  23. 23

    I cant see my web page from mobile devices

  24. 24

    Redirect only mobile devices to a landing page. But only once

  25. 25

    Detecting splash page PHP file from non-mobile devices

  26. 26

    Start showing new php page in middle of the content

  27. 27

    google map not showing in page by ajax loaded content

  28. 28

    Master page content not showing up in child

  29. 29

    Master page content not showing up in child

HotTag

Archive