problems with CSS and post slide show

  • Unknown's avatar

    Hi,
    I have two blogs: One English and one French.
    http://www.moviemaniaxx.com (ENG)
    http://www. cinemalade.com (FR)
    I’m having problems with the French.

    I tweaked the appearance of the English by removing the date, making thumbnails larger (three images per row) making the post header width to 200 px. It all worked well in the English version with this code:

    .post-date {
    display: none;
    }

    .home .post .entry-meta {
    display: none;
    }

    .home .site-content .hentry,
    .archive .site-content .hentry,
    .search .site-content .hentry {
    float: left;
    margin: 0;
    overflow: hidden;
    width: 393px;
    height: 393px;
    }

    .single .entry-header {
    height: 200px;
    }

    But when I tried the very same code in the French site, it only seemed to digest the height of the post headers to 200 px. There rest did not work.

    Also, on a different note – but still perplexing – I tried setting up sliding posts on the French site, just like I did in the English one, but for some reason, it keeps the same image twice on the front page: in the sliding header AND just below it in the mosaic.

    The obvious question: Is something lost in translation?

    Thanks in advance,
    Steve

    The blog I need help with is: (visible only to logged in users)

  • In the French site’s custom CSS replace home with blog. So the rules would be:

    .blog .post .entry-meta {
    display: none;
    }
    
    .blog .site-content .hentry,
    .archive .site-content .hentry,
    .search .site-content .hentry {
    float: left;
    margin: 0;
    overflow: hidden;
    width: 393px;
    height: 393px;
    }

    This rule remains as-is.

    .single .entry-header {
    height: 200px;
    }

    I don’t think this rule is needed in both the blogs. Please double check if you have a reason to keep this.

    .post-date {
    display: none;
    }

    Interestingly, French site has the same post three times in the slider.
    English site has 5 posts but two of the following appears twice on the slider:
    SHE LOVES ME NOT: He loves me not
    GO SEE: WHIPLASH

    I will have to check later on what’s wrong with the slider.

  • The topic ‘problems with CSS and post slide show’ is closed to new replies.