Viewing 11 replies - 1 through 11 (of 11 total)
  • A mi me pasa exactamente lo mismo

    Thread Starter c-m

    (@c-m)

    Yes it must be the same for everyone using this plugin.

    Hopefully the developer will respond when he/she gets a chance.

    Go to Plugins/ Editor.
    Choose Tiled Gallery Carousel Without Jetpack plugin in the dropdown menu and press Select.
    Make sure your in the tiled-gallery.php file.
    Press CTRL+F (CMD+F) for Search and enter 500.
    Change the number to the width of your content of the website.
    Press update file.
    Done!

    The gallery will now show in full width of you website.

    RichardD : This is not work me :O( I use 720px in tiled-gallery.php, but gallery have 640px

    Not working for me too.

    This is discussed in another post: gitika chaudhary suggested to install
    “Custom Content Width” plugin, then go to “settings” and in “media” you’ll find the “Custom Content Width” field, fill it.
    It works perfectly!

    Thanks @richardd. Updating the tiled-gallery.php in the Plugins editor worked for me:

    if ( ! $tiled_gallery_content_width )
    $tiled_gallery_content_width = 900;

    now my gallery is 900px wide.

    don’t modify plugin, add filter to theme functions.php.

    set whatever width you need in the change_gallery_width function.

    function change_gallery_width() {return “1024”;}
    add_filter(’tiled_gallery_content_width’, change_gallery_width,10,3);

    I have tried @richardd, 210dogyear and Brian Santalone’s solutions, and none of them have worked for me. I updated my theme’s content width in the CSS to 2000px and I thought that would fix it:

    .content {
    max-width: 2000px;
    }

    and it didn’t. Any other solutions? Here’s the gallery on my site: https://www.stephaniastanley.com/fashion/

    @jenk13, I see that you have 3 rows, how did you get more than 2? Do You have checkbox called columns at gallery edit or did You hacked a bit?

    @brian Santalone you are a legend!! Thank you! Your code worked perfectly!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Gallery tiles area not taking up full width’ is closed to new replies.