• Just wondering if there is a setting I’m missing somewhere that would allow when I place a gallery, that it would prevent the shortcode from rendering the stack of photos thumbnail in the edit view?

    I’m placing galleries in a table and the thumbnail ignores the boundaries of the table cell, overlapping my content in other cells.

    https://wordpress.org/plugins/foogallery/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author bradvin

    (@bradvin)

    do you have a link I can check out?

    Thread Starter muewsik

    (@muewsik)

    https://www.dropbox.com/s/3w9zxh8gtik6xwr/EditPage.png?dl=0

    I’m sure it’s related to the style here:

    .mce-content-body div.foogallery-tinymce-view .foogallery-pile {
        position: absolute;
        z-index: 10;
        left: 50%;
        top: 50%;
        margin-left: -83px;
        margin-top: -95px;
    }

    and

    .mce-content-body div.foogallery-tinymce-view .foogallery-pile-inner img {
        max-width: 150px;
    }

    I’d be happy with

    .mce-content-body div.foogallery-tinymce-view .foogallery-pile {
        position: inherit;
        z-index: 10;
        left: 0;
        top: 0;
        margin-left: 0;
        margin-top: 0;
    }

    and

    .mce-content-body div.foogallery-tinymce-view .foogallery-pile-inner img {
        max-width: 50px;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘disable edit view thumbnail and display actual shortcode instead’ is closed to new replies.