• Resolved nimeldk

    (@nimeldk)


    Hello,

    How can i make space between the videos? Or even better, shown them side by side.

    I found a thread in here, which sould solve the space issue. But it doesnt.

    i cant overrule the css, even though it looks fine in the css console, when i put in the css it doesnt work.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Aleksandar Uro?evi?

    (@urkekg)

    Hi @nimeldk,

    I see that there is space 20px below each video on page you provided link to https://prntscr.com/k80ux1

    Issue with stacked videos (one per row) is because you inserted them as a widget instead of shortcode, so CSS does not work well.

    If you keep it as is and add following CSS to child theme style.css (or custom CSS):

    .panel-grid .youtube_channel.responsive .ytc_video_container {
      width: 50%!important;
      padding: 0 10px;
      box-sizing: border-box;
    }
    p:empty{display:none;}

    you’ll get something like this https://prntscr.com/k80ylh

    Cheers,
    Aleksandar

    Thread Starter nimeldk

    (@nimeldk)

    Hello Aleksander,

    Thank you so much. It seems to work. But after i put a title on the videos “inside”..
    The space under the videos is pretty extreme now ??

    Where to adjust that in the css?
    https://basic-bytes.com/videos/

    Thank you!

    Plugin Author Aleksandar Uro?evi?

    (@urkekg)

    Hey @nimeldk,

    You have some very strange situation on your site. There is empty anchor below thumbnail anchor – check screenshot https://prntscr.com/k8jyiy

    There must be on website something that mess with content rendering. Here how this looks in SiteOrigin:

    Try with this dirty hack (as replacement for CSS sent in my previous comment):

    .panel-grid .youtube_channel.responsive .ytc_video_container {
        width: 50%!important;
        padding: 10px;
        box-sizing: border-box;
    }
    p:empty, a.ytc_thumb+p {display:none}

    Cheers,
    Aleksandar

    Thread Starter nimeldk

    (@nimeldk)

    You did it again, thanks :)!

    Last question .. i would like the titles to be shown above the videos.

    i tried using: showtitle=above in the shortcode. But now the titles are removed.

    Can you help me here as well?

    Thanks!

    Plugin Author Aleksandar Uro?evi?

    (@urkekg)

    Hey @nimeldk,

    Thank you very much for reporting that bug. I have fixed it and released v3.0.11.5 so feel free to upgrade.
    New version also include customizable titletag per widget/shortcode.

    Cheers,
    Aleksandar

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘space between videos or shown aside’ is closed to new replies.