• I started this timeline a while ago, and it seemed to go OK.

    Nowhere did I find the instrucion that for images to appear, there needed to be a Featured image.

    Previously the thumbnails created were correctly proportioned (either landscape or portrait, as they were uploaded.

    Now, when the thumbnails on the TimeLine are all cropped as Portrait, with a proportion 40x60pixels.

    I cannot find this proportion anywhere in my settings. Any suggestion how I can fix this.

    Thanks, Peter

    http://wordpress.org/extend/plugins/wordpress-posts-timeline/

Viewing 1 replies (of 1 total)
  • Plugin Author hobbsh

    (@hobbsh)

    Hey Peter,

    If you go into the CSS and find this block of code:

    #timeline ul .timeline-image {
        height: auto;
        min-height: 100px;
        overflow-x: hidden;
        width: 22%;
    }

    Change width to auto – that should solve your problem. I may add an option to specify timeline image dimensions in the future.

    Your new code will look like

    #timeline ul .timeline-image {
        height: auto;
        min-height: 100px;
        overflow-x: hidden;
        width: auto;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WordPress Posts Timeline] Thumbnail problems’ is closed to new replies.