• Resolved fcitdavid

    (@fcitdavid)


    Is it possible to adjust the style and layout of the single video page? I’d like to adjust the vertical spacing on that page without affecting the header.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Yes, it’s definitely possible 🙂. If the issue is mainly about adjusting the vertical spacing, this can usually be handled with a small CSS tweak. Could you please share the URL of an example video page from your site and let us know which specific spacing you’d like to adjust (and how you’d like it to look)? That way, we can provide the most relevant steps for your case.

    Thread Starter fcitdavid

    (@fcitdavid)

    https://vetsmus.org/video/harold-joins-tank-turret-repairman/

    We are displaying this on a vertical screen (portrait orientation) and it leaves a large white space below the related videos. I’d love for the header to remain where it is and the rest of the body content to be centered vertically in the remaining portion of the screen. We also need it to only affect the single video page; everything else is working great.

    • This reply was modified 2 months, 2 weeks ago by fcitdavid.
    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Thanks so much for getting back to us with the details.

    From what we can see, the spacing below the related videos is coming from your theme’s footer section, which is being hidden incorrectly. You can fix this by adding the following CSS under Appearance → Customize → Additional CSS in your WordPress Admin Dashboard:

    .single-aiovg_videos #site-footer {
    display: none;
    }

    In addition, the extra space above the related videos is caused by a hidden title element due to a theme/plugin conflict. To resolve that, please also add this CSS:

    .single-aiovg_videos h2.aiovg-header {
    color: inherit;
    font-size: 1.8em;
    }

    .single-aiovg_videos .aiovg-caption {
    display: none;
    }

    This will:

    • Remove the unwanted white space caused by the hidden footer.
    • Make the related videos title display correctly.

    Hopefully this resolves the issue for you. If the spacing still doesn’t look right, could you please share a screenshot of your single video page as it appears on your screen? That will help us fine-tune the fix to match your setup.

    Thread Starter fcitdavid

    (@fcitdavid)

    Thanks for your assistance. This pointed me in the right direction to apply the changes I needed and now I have it working properly!

Viewing 4 replies - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.