• Resolved isa9966

    (@isa9966)


    Hi sir/mom
    I have a problem with Gmedia pro gallery and album size i want to make a full-Width gallery or album so how can I fix this?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Serhii Pasyuk

    (@pasyuk)

    If your theme have full width templates you can create Page with a gallery and choose that template. Check maybe there is some option in your theme to at least disable empty sidebar on your Posts, so the content block will be wider.

    If you can’t do things above then try add code below to the Custom CSS field of the gallery:

    #top #wrap_all #main .sidebar {
        display: none;
    }
    
    #main .container .av-content-small.units {
        width: 100%;
    }
    
    #main .content .entry-content-wrapper {
        padding-right: 0;
    }

    If you need full window gallery from side to side then add also this code:

    #main .template-blog .post .entry-content-wrapper {
        overflow: visible;
    }
    
    #main .entry-content {
        width: calc(100vw - 40px);
        margin-left: 50%;
        transform: translateX(-50%);
    }
Viewing 1 replies (of 1 total)

The topic ‘Website full-Width size Gmedia Pro’ is closed to new replies.