Support » Fixing WordPress » Recent News Posts not showing in Mobile View

  • Hi, I have a responsive website that I have done a bit of customizing too and the developer of the theme will not provide support but I’m really just looking for some help on this issue. I have a site which shows recent news on the home page which show fine on desktop but when on an iphone or ipad it only shows 1 recent news in that section instead of 3 with a enews sign up form. The site is dev.ussailing.org. Also I think I know where the code is that i need to adjust…

    This is my current css that is where I think it’s coming from..

    /* =Layout Modules
    ———————————————– */

    .layout-module {
    font-size: 13px; font-size: 1.3rem;
    margin-bottom: 2em;
    overflow: hidden;
    position: relative;
    /*padding: 0px 0px 15px 0px;*/
    background-color:#fff;
    box-shadow: 0px 0px 9px 1px gray;
    margin-top: 15px;
    top: -17px;
    }
    .layout-module .column {
    float: left;
    margin-right: 3%;
    width: 48.5%;
    }
    .layout-module .column.last {
    margin-right: 0;
    height: 207px;
    padding-bottom:95px;
    }
    .layout-module .boxed {
    background: #fff;
    border: 1px solid #eee;
    border-top: 0;
    padding: 1.25em;

    }
    .layout-module .widget-title {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.12)), to(rgba(255,255,255,0)));
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.12), rgba(255,255,255,0));
    background-image: -moz-linear-gradient(top, rgba(255,255,255,0.12), rgba(255,255,255,0));
    background-image: -o-linear-gradient(top, rgba(255,255,255,0.12), rgba(255,255,255,0));
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(255,255,255,0));
    color: #eee;
    font-size: 14px;
    font-weight: strong;
    padding: 0.5em 1.2em;
    text-transform: uppercase;

    }
    .layout-module .widget-title a {
    color: #eee;
    }
    .layout-module .widget-title a:hover {
    color: #fff;
    }
    .layout-module article {
    margin-bottom: 1.25em;
    overflow: hidden;
    }
    .layout-module article.featured {
    margin-bottom: 1.75em;
    }
    .layout-module article:last-child {
    margin-bottom: 0;
    }
    .layout-module .post-thumbnail-wrap {
    float: left;
    margin-right: 1em;
    width: 0%;
    }
    .layout-module .featured .post-thumbnail-wrap {
    float: none;
    margin-right: 0;
    width: auto;
    }
    .layout-module .entry-title {
    font-size: 15px; font-size: 1.5rem;
    margin: 0 0 0.3em;
    font-weight: normal !important;
    font-family: Arial;
    }
    .layout-module .featured .entry-title {
    font-size: 17.798px; font-size: 1.779rem;
    margin: 0.7em 0 0.1em;
    font-weight: bold !important;
    }
    .layout-module .entry-byline {
    margin: 0;
    }
    .layout-module .featured .entry-byline {
    margin-bottom: 0.8em;
    border-bottom: 1px solid #eee;
    }
    .layout-module .entry-summary {
    font-size: inherit;
    }

    .widget_fleximag_layout_module_e .boxed {
    padding-bottom: 0em;
    }
    .widget_fleximag_layout_module_e .post-thumbnail-wrap {
    float: none;
    width: auto;
    margin-right: 0;
    }

    @media only screen and ( max-width: 1350px ) {
    .layout-3c-l .layout-module .entry-title,
    .layout-3c-r .layout-module .entry-title,
    .layout-3c-c-l .layout-module .entry-title,
    .layout-3c-c-r .layout-module .entry-title {
    font-size: 13px; font-size: 1.3rem;
    }
    .layout-3c-l .layout-module .entry-summary,
    .layout-3c-r .layout-module .entry-summary,
    .layout-3c-c-l .layout-module .entry-summary,
    .layout-3c-c-r .layout-module .entry-summary {
    font-size: 12px; font-size: 1.2rem;
    }
    .layout-3c-l .layout-module .featured .entry-title,
    .layout-3c-r .layout-module .featured .entry-title,
    .layout-3c-c-l .layout-module .featured .entry-title,
    .layout-3c-c-r .layout-module .featured .entry-title {
    font-size: 16px; font-size: 1.6rem;
    }
    }

    This is the original css which if i embedd, works but of course is not customized anymore so I can’t use it, just can’t find out where it’s screwing up…

    /* =Layout Modules
    ———————————————– */

    .layout-module {
    font-size: 13px; font-size: 1.3rem;
    margin-bottom: 2em;
    overflow: hidden;
    position: relative;
    }
    .layout-module .column {
    float: left;
    margin-right: 3%;
    width: 48.5%;
    }
    .layout-module .column.last {
    margin-right: 0;
    }
    .layout-module .boxed {
    background: #fff;
    border: 1px solid #eee;
    border-top: 0;
    padding: 1.25em;
    }
    .layout-module .widget-title {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.12)), to(rgba(255,255,255,0)));
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.12), rgba(255,255,255,0));
    background-image: -moz-linear-gradient(top, rgba(255,255,255,0.12), rgba(255,255,255,0));
    background-image: -o-linear-gradient(top, rgba(255,255,255,0.12), rgba(255,255,255,0));
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(255,255,255,0));
    color: #eee;
    font-size: inherit;
    font-weight: normal;
    padding: 0.8em 1.5em;
    text-transform: uppercase;
    }
    .layout-module .widget-title a {
    color: #eee;
    }
    .layout-module .widget-title a:hover {
    color: #fff;
    }
    .layout-module article {
    margin-bottom: 1.25em;
    overflow: hidden;
    }
    .layout-module article.featured {
    margin-bottom: 1.75em;
    }
    .layout-module article:last-child {
    margin-bottom: 0;
    }
    .layout-module .post-thumbnail-wrap {
    float: left;
    margin-right: 1em;
    width: 25%;
    }
    .layout-module .featured .post-thumbnail-wrap {
    float: none;
    margin-right: 0;
    width: auto;
    }
    .layout-module .entry-title {
    font-size: 15px; font-size: 1.5rem;
    margin: 0 0 0.3em;
    }
    .layout-module .featured .entry-title {
    font-size: 17.798px; font-size: 1.779rem;
    margin: 0.7em 0 0.1em;
    }
    .layout-module .entry-byline {
    margin: 0;
    }
    .layout-module .featured .entry-byline {
    margin-bottom: 0.8em;
    border-bottom: 1px solid #eee;
    }
    .layout-module .entry-summary {
    font-size: inherit;
    }

    .widget_fleximag_layout_module_e .boxed {
    padding-bottom: 1.5em;
    }
    .widget_fleximag_layout_module_e .post-thumbnail-wrap {
    float: none;
    width: auto;
    margin-right: 0;
    }

    @media only screen and ( max-width: 1350px ) {
    .layout-3c-l .layout-module .entry-title,
    .layout-3c-r .layout-module .entry-title,
    .layout-3c-c-l .layout-module .entry-title,
    .layout-3c-c-r .layout-module .entry-title {
    font-size: 13px; font-size: 1.3rem;
    }
    .layout-3c-l .layout-module .entry-summary,
    .layout-3c-r .layout-module .entry-summary,
    .layout-3c-c-l .layout-module .entry-summary,
    .layout-3c-c-r .layout-module .entry-summary {
    font-size: 12px; font-size: 1.2rem;
    }
    .layout-3c-l .layout-module .featured .entry-title,
    .layout-3c-r .layout-module .featured .entry-title,
    .layout-3c-c-l .layout-module .featured .entry-title,
    .layout-3c-c-r .layout-module .featured .entry-title {
    font-size: 16px; font-size: 1.6rem;
    }
    }

  • The topic ‘Recent News Posts not showing in Mobile View’ is closed to new replies.